forked from watir/watirspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkboxes_spec.rb
45 lines (35 loc) · 1.1 KB
/
checkboxes_spec.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# encoding: utf-8
require File.expand_path("../spec_helper", __FILE__)
describe "CheckBoxes" do
before :each do
browser.goto(WatirSpec.url_for("forms_with_input_elements.html"))
end
describe "with selectors" do
it "returns the matching elements" do
expect(browser.checkboxes(value: "books").to_a).to eq [browser.checkbox(value: "books")]
end
end
describe "#length" do
it "returns the number of checkboxes" do
expect(browser.checkboxes.length).to eq 8
end
end
describe "#[]" do
it "returns the checkbox at the given index" do
expect(browser.checkboxes[0].id).to eq "new_user_interests_books"
end
end
describe "#each" do
it "iterates through checkboxes correctly" do
count = 0
browser.checkboxes.each_with_index do |c, index|
expect(c).to be_instance_of(CheckBox)
expect(c.name).to eq browser.checkbox(index: index).name
expect(c.id).to eq browser.checkbox(index: index).id
expect(c.value).to eq browser.checkbox(index: index).value
count += 1
end
expect(count).to be > 0
end
end
end