forked from watir/watirspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
label_spec.rb
81 lines (66 loc) · 2.67 KB
/
label_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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# encoding: utf-8
require File.expand_path("../spec_helper", __FILE__)
describe "Label" do
before :each do
browser.goto(WatirSpec.url_for("forms_with_input_elements.html"))
end
# Exists method
describe "#exists?" do
it "returns true if the element exists" do
expect(browser.label(:id, 'first_label')).to exist
expect(browser.label(:id, /first_label/)).to exist
expect(browser.label(:for, "new_user_first_name")).to exist
expect(browser.label(:for, /new_user_first_name/)).to exist
expect(browser.label(:text, 'First name')).to exist
expect(browser.label(:text, /First name/)).to exist
expect(browser.label(:index, 0)).to exist
expect(browser.label(:xpath, "//label[@id='first_label']")).to exist
end
it "returns the first label if given no args" do
expect(browser.label).to exist
end
it "returns false if the element does not exist" do
expect(browser.label(:id, 'no_such_id')).to_not exist
expect(browser.label(:id, /no_such_id/)).to_not exist
expect(browser.label(:text, 'no_such_text')).to_not exist
expect(browser.label(:text, /no_such_text/)).to_not exist
expect(browser.label(:index, 1337)).to_not exist
expect(browser.label(:xpath, "//input[@id='no_such_id']")).to_not exist
end
it "raises TypeError when 'what' argument is invalid" do
expect { browser.label(:id, 3.14).exists? }.to raise_error(TypeError)
end
it "raises MissingWayOfFindingObjectException when 'how' argument is invalid" do
expect { browser.label(:no_such_how, 'some_value').exists? }.to raise_error(MissingWayOfFindingObjectException)
end
end
describe "click" do
it "fires the onclick event" do
browser.label(:id, 'first_label').click
expect(messages.first).to eq 'label'
end
end
# Attribute methods
describe "#id" do
it "returns the id attribute if the label exists" do
expect(browser.label(:index, 0).id).to eq "first_label"
end
it "raises UnknownObjectException if the label doesn't exist" do
expect { browser.label(:index, 1337).id }.to raise_error(UnknownObjectException)
end
end
describe "#for" do
it "returns the 'for' attribute if the label exists" do
expect(browser.label(:index, 0).for).to eq "new_user_first_name"
end
it "raises UnknownObjectException if the label doesn't exist" do
expect { browser.label(:index, 1337).for }.to raise_error(UnknownObjectException)
end
end
describe "#respond_to?" do
it "returns true for all attribute methods" do
expect(browser.label(:index, 0)).to respond_to(:id)
expect(browser.label(:index, 0)).to respond_to(:for)
end
end
end