forked from watir/watirspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
del_spec.rb
129 lines (107 loc) · 4.78 KB
/
del_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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# encoding: utf-8
require File.expand_path("../spec_helper", __FILE__)
describe "Del" do
before :each do
browser.goto(WatirSpec.url_for("non_control_elements.html"))
end
# Exists method
describe "#exist?" do
it "returns true if the 'del' exists" do
expect(browser.del(id: "lead")).to exist
expect(browser.del(id: /lead/)).to exist
expect(browser.del(text: "This is a deleted text tag 1")).to exist
expect(browser.del(text: /This is a deleted text tag 1/)).to exist
expect(browser.del(class: "lead")).to exist
expect(browser.del(class: /lead/)).to exist
expect(browser.del(index: 0)).to exist
expect(browser.del(xpath: "//del[@id='lead']")).to exist
end
it "returns the first del if given no args" do
expect(browser.del).to exist
end
it "returns false if the element doesn't exist" do
expect(browser.del(id: "no_such_id")).to_not exist
expect(browser.del(id: /no_such_id/)).to_not exist
expect(browser.del(text: "no_such_text")).to_not exist
expect(browser.del(text: /no_such_text/)).to_not exist
expect(browser.del(class: "no_such_class")).to_not exist
expect(browser.del(class: /no_such_class/)).to_not exist
expect(browser.del(index: 1337)).to_not exist
expect(browser.del(xpath: "//del[@id='no_such_id']")).to_not exist
end
it "raises TypeError when 'what' argument is invalid" do
expect { browser.del(id: 3.14).exists? }.to raise_error(TypeError)
end
it "raises MissingWayOfFindingObjectException when 'how' argument is invalid" do
expect { browser.del(no_such_how: 'some_value').exists? }.to raise_error(Watir::Exception::MissingWayOfFindingObjectException)
end
end
# Attribute methods
describe "#class_name" do
it "returns the class attribute" do
expect(browser.del(index: 0).class_name).to eq 'lead'
end
it "returns an empty string if the element exists and the attribute doesn't" do
expect(browser.del(index: 2).class_name).to eq ''
end
it "raises UnknownObjectException if the del doesn't exist" do
expect { browser.del(id: 'no_such_id').class_name }.to raise_error(Watir::Exception::UnknownObjectException)
end
end
describe "#id" do
it "returns the id attribute" do
expect(browser.del(index: 0).id).to eq "lead"
end
it "returns an empty string if the element exists and the attribute doesn't" do
expect(browser.del(index: 2).id).to eq ''
end
it "raises UnknownObjectException if the del doesn't exist" do
expect { browser.del(id: "no_such_id").id }.to raise_error(Watir::Exception::UnknownObjectException)
expect { browser.del(index: 1337).id }.to raise_error(Watir::Exception::UnknownObjectException)
end
end
describe "#title" do
it "returns the title attribute" do
expect(browser.del(index: 0).title).to eq 'Lorem ipsum'
end
it "returns an empty string if the element exists and the attribute doesn't" do
expect(browser.del(index: 2).title).to eq ''
end
it "raises UnknownObjectException if the del doesn't exist" do
expect { browser.del(id: 'no_such_id').title }.to raise_error(Watir::Exception::UnknownObjectException)
expect { browser.del(xpath: "//del[@id='no_such_id']").title }.to raise_error(Watir::Exception::UnknownObjectException)
end
end
describe "#text" do
it "returns the text of the del" do
expect(browser.del(index: 1).text).to eq 'This is a deleted text tag 2'
end
it "returns an empty string if the element doesn't contain any text" do
expect(browser.del(index: 3).text).to eq ''
end
it "raises UnknownObjectException if the del doesn't exist" do
expect { browser.del(id: 'no_such_id').text }.to raise_error(Watir::Exception::UnknownObjectException)
expect { browser.del(:xpath , "//del[@id='no_such_id']").text }.to raise_error(Watir::Exception::UnknownObjectException)
end
end
describe "#respond_to?" do
it "returns true for all attribute methods" do
expect(browser.del(index: 0)).to respond_to(:class_name)
expect(browser.del(index: 0)).to respond_to(:id)
expect(browser.del(index: 0)).to respond_to(:title)
expect(browser.del(index: 0)).to respond_to(:text)
end
end
# Other
describe "#click" do
it "fires events" do
expect(browser.del(class: 'footer').text).to_not include('Javascript')
browser.del(class: 'footer').click
expect(browser.del(class: 'footer').text).to include('Javascript')
end
it "raises UnknownObjectException if the del doesn't exist" do
expect { browser.del(id: "no_such_id").click }.to raise_error(Watir::Exception::UnknownObjectException)
expect { browser.del(title: "no_such_title").click }.to raise_error(Watir::Exception::UnknownObjectException)
end
end
end