forked from watir/watirspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buttons_spec.rb
56 lines (44 loc) · 1.36 KB
/
buttons_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
46
47
48
49
50
51
52
53
54
55
56
# encoding: utf-8
require File.expand_path("../spec_helper", __FILE__)
describe "Buttons" 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.buttons(name: "new_user_button").to_a).to eq [browser.button(name: "new_user_button")]
end
end
describe "#length" do
it "returns the number of buttons" do
expect(browser.buttons.length).to eq 9
end
end
describe "#[]" do
it "returns the button at the given index" do
expect(browser.buttons[0].title).to eq "Submit the form"
end
end
describe "#first" do
it "returns the first element in the collection" do
expect(browser.buttons.first.value).to eq browser.buttons[0].value
end
end
describe "#last" do
it "returns the last element in the collection" do
expect(browser.buttons.last.value).to eq browser.buttons[-1].value
end
end
describe "#each" do
it "iterates through buttons correctly" do
count = 0
browser.buttons.each_with_index do |b, index|
expect(b.name).to eq browser.button(index: index).name
expect(b.id).to eq browser.button(index: index).id
expect(b.value).to eq browser.button(index: index).value
count += 1
end
expect(count).to be > 0
end
end
end