watir 7.2.0 → 7.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/chrome.yml +1 -1
- data/.github/workflows/edge.yml +1 -1
- data/.github/workflows/firefox.yml +1 -1
- data/.github/workflows/ie.yml +1 -1
- data/.github/workflows/safari.yml +1 -1
- data/.github/workflows/unit.yml +1 -1
- data/.rubocop.yml +25 -12
- data/.rubocop_todo.yml +8 -1
- data/CHANGES.md +6 -1
- data/LICENSE +2 -2
- data/lib/watir/capabilities.rb +1 -1
- data/lib/watir/locators/anchor/selector_builder.rb +3 -0
- data/lib/watir/locators/element/matcher.rb +2 -1
- data/lib/watir/locators/element/selector_builder/regexp_disassembler.rb +2 -1
- data/lib/watir/locators/text_field/matcher.rb +0 -4
- data/lib/watir/version.rb +1 -1
- data/spec/locator_spec_helper.rb +0 -8
- data/spec/unit/capabilities_spec.rb +553 -561
- data/spec/unit/element_locator_spec.rb +89 -78
- data/spec/unit/match_elements/button_spec.rb +69 -62
- data/spec/unit/match_elements/element_spec.rb +303 -309
- data/spec/unit/match_elements/text_field_spec.rb +76 -73
- data/spec/unit/selector_builder/anchor_spec.rb +39 -33
- data/spec/unit/selector_builder/button_spec.rb +209 -202
- data/spec/unit/selector_builder/cell_spec.rb +48 -42
- data/spec/unit/selector_builder/element_spec.rb +634 -627
- data/spec/unit/selector_builder/row_spec.rb +119 -113
- data/spec/unit/selector_builder/text_field_spec.rb +195 -188
- data/spec/unit/selector_builder/textarea_spec.rb +22 -14
- data/spec/unit/wait_spec.rb +85 -81
- data/spec/watirspec/adjacent_spec.rb +249 -247
- data/spec/watirspec/after_hooks_spec.rb +161 -159
- data/spec/watirspec/alert_spec.rb +61 -58
- data/spec/watirspec/browser_spec.rb +409 -409
- data/spec/watirspec/capabilities_spec.rb +89 -99
- data/spec/watirspec/cookies_spec.rb +120 -118
- data/spec/watirspec/drag_and_drop_spec.rb +26 -24
- data/spec/watirspec/element_hidden_spec.rb +66 -60
- data/spec/watirspec/elements/area_spec.rb +49 -47
- data/spec/watirspec/elements/areas_spec.rb +27 -25
- data/spec/watirspec/elements/button_spec.rb +253 -251
- data/spec/watirspec/elements/buttons_spec.rb +36 -34
- data/spec/watirspec/elements/checkbox_spec.rb +48 -36
- data/spec/watirspec/elements/checkboxes_spec.rb +29 -27
- data/spec/watirspec/elements/collections_spec.rb +126 -119
- data/spec/watirspec/elements/date_field_spec.rb +185 -183
- data/spec/watirspec/elements/date_fields_spec.rb +29 -27
- data/spec/watirspec/elements/date_time_field_spec.rb +197 -195
- data/spec/watirspec/elements/date_time_fields_spec.rb +30 -28
- data/spec/watirspec/elements/dd_spec.rb +87 -85
- data/spec/watirspec/elements/dds_spec.rb +27 -25
- data/spec/watirspec/elements/del_spec.rb +106 -104
- data/spec/watirspec/elements/dels_spec.rb +26 -24
- data/spec/watirspec/elements/div_spec.rb +225 -221
- data/spec/watirspec/elements/divs_spec.rb +37 -35
- data/spec/watirspec/elements/dl_spec.rb +110 -108
- data/spec/watirspec/elements/dls_spec.rb +28 -26
- data/spec/watirspec/elements/dt_spec.rb +86 -84
- data/spec/watirspec/elements/dts_spec.rb +27 -25
- data/spec/watirspec/elements/element_spec.rb +794 -775
- data/spec/watirspec/elements/elements_spec.rb +40 -38
- data/spec/watirspec/elements/em_spec.rb +62 -60
- data/spec/watirspec/elements/ems_spec.rb +28 -26
- data/spec/watirspec/elements/filefield_spec.rb +116 -114
- data/spec/watirspec/elements/filefields_spec.rb +28 -26
- data/spec/watirspec/elements/font_spec.rb +20 -18
- data/spec/watirspec/elements/form_spec.rb +51 -49
- data/spec/watirspec/elements/forms_spec.rb +29 -27
- data/spec/watirspec/elements/frame_spec.rb +89 -87
- data/spec/watirspec/elements/frames_spec.rb +27 -25
- data/spec/watirspec/elements/hidden_spec.rb +81 -79
- data/spec/watirspec/elements/hiddens_spec.rb +28 -26
- data/spec/watirspec/elements/hn_spec.rb +59 -57
- data/spec/watirspec/elements/hns_spec.rb +26 -24
- data/spec/watirspec/elements/iframe_spec.rb +195 -191
- data/spec/watirspec/elements/iframes_spec.rb +31 -29
- data/spec/watirspec/elements/image_spec.rb +148 -146
- data/spec/watirspec/elements/images_spec.rb +26 -24
- data/spec/watirspec/elements/input_spec.rb +9 -7
- data/spec/watirspec/elements/ins_spec.rb +106 -104
- data/spec/watirspec/elements/inses_spec.rb +26 -24
- data/spec/watirspec/elements/label_spec.rb +56 -54
- data/spec/watirspec/elements/labels_spec.rb +26 -24
- data/spec/watirspec/elements/li_spec.rb +76 -74
- data/spec/watirspec/elements/link_spec.rb +173 -177
- data/spec/watirspec/elements/links_spec.rb +45 -43
- data/spec/watirspec/elements/lis_spec.rb +27 -25
- data/spec/watirspec/elements/list_spec.rb +44 -42
- data/spec/watirspec/elements/map_spec.rb +57 -55
- data/spec/watirspec/elements/maps_spec.rb +27 -25
- data/spec/watirspec/elements/meta_spec.rb +16 -14
- data/spec/watirspec/elements/metas_spec.rb +26 -24
- data/spec/watirspec/elements/ol_spec.rb +56 -65
- data/spec/watirspec/elements/ols_spec.rb +26 -24
- data/spec/watirspec/elements/option_spec.rb +91 -89
- data/spec/watirspec/elements/p_spec.rb +81 -79
- data/spec/watirspec/elements/pre_spec.rb +77 -75
- data/spec/watirspec/elements/pres_spec.rb +26 -24
- data/spec/watirspec/elements/ps_spec.rb +26 -24
- data/spec/watirspec/elements/radio_spec.rb +251 -249
- data/spec/watirspec/elements/radios_spec.rb +28 -26
- data/spec/watirspec/elements/select_list_spec.rb +537 -526
- data/spec/watirspec/elements/select_lists_spec.rb +32 -30
- data/spec/watirspec/elements/span_spec.rb +112 -110
- data/spec/watirspec/elements/spans_spec.rb +26 -24
- data/spec/watirspec/elements/strong_spec.rb +58 -58
- data/spec/watirspec/elements/strongs_spec.rb +28 -26
- data/spec/watirspec/elements/table_spec.rb +192 -139
- data/spec/watirspec/elements/tables_spec.rb +28 -26
- data/spec/watirspec/elements/tbody_spec.rb +74 -72
- data/spec/watirspec/elements/tbodys_spec.rb +40 -38
- data/spec/watirspec/elements/td_spec.rb +66 -64
- data/spec/watirspec/elements/tds_spec.rb +41 -39
- data/spec/watirspec/elements/text_field_spec.rb +206 -204
- data/spec/watirspec/elements/text_fields_spec.rb +30 -28
- data/spec/watirspec/elements/textarea_spec.rb +20 -18
- data/spec/watirspec/elements/textareas_spec.rb +18 -16
- data/spec/watirspec/elements/tfoot_spec.rb +65 -63
- data/spec/watirspec/elements/tfoots_spec.rb +42 -40
- data/spec/watirspec/elements/thead_spec.rb +65 -63
- data/spec/watirspec/elements/theads_spec.rb +42 -40
- data/spec/watirspec/elements/tr_spec.rb +48 -46
- data/spec/watirspec/elements/trs_spec.rb +42 -40
- data/spec/watirspec/elements/ul_spec.rb +56 -54
- data/spec/watirspec/elements/uls_spec.rb +26 -24
- data/spec/watirspec/radio_set_spec.rb +269 -267
- data/spec/watirspec/screenshot_spec.rb +20 -18
- data/spec/watirspec/scroll_spec.rb +152 -148
- data/spec/watirspec/shadow_root_spec.rb +86 -83
- data/spec/watirspec/user_editable_spec.rb +200 -198
- data/spec/watirspec/wait_spec.rb +289 -295
- data/spec/watirspec/window_switching_spec.rb +422 -434
- data/spec/watirspec_helper.rb +1 -23
- data/watir.gemspec +5 -4
- metadata +44 -33
- data/spec/watirspec/attributes_spec.rb +0 -18
- data/spec/watirspec/elements/table_nesting_spec.rb +0 -51
- data/spec/watirspec/special_chars_spec.rb +0 -23
|
@@ -2,183 +2,179 @@
|
|
|
2
2
|
|
|
3
3
|
require 'watirspec_helper'
|
|
4
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
|
-
end
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
end
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
end
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
it 'raises exception unless value is a String or a RegExp' do
|
|
179
|
-
browser.goto WatirSpec.url_for('non_control_elements.html')
|
|
180
|
-
msg = /expected one of \[String, Regexp\], got 7:Integer/
|
|
181
|
-
expect { browser.link(visible_text: 7).exists? }.to raise_exception(TypeError, msg)
|
|
5
|
+
module Watir
|
|
6
|
+
describe Anchor do
|
|
7
|
+
before do
|
|
8
|
+
browser.goto(WatirSpec.url_for('non_control_elements.html'))
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
# Exists method
|
|
12
|
+
describe '#exist?' do
|
|
13
|
+
it 'returns true if the link exists' do
|
|
14
|
+
expect(browser.link(id: 'link_2')).to exist
|
|
15
|
+
expect(browser.link(id: /link_2/)).to exist
|
|
16
|
+
expect(browser.link(title: 'link_title_2')).to exist
|
|
17
|
+
expect(browser.link(title: /link_title_2/)).to exist
|
|
18
|
+
expect(browser.link(text: 'Link 2')).to exist
|
|
19
|
+
expect(browser.link(text: /Link 2/i)).to exist
|
|
20
|
+
expect(browser.link(href: 'non_control_elements.html')).to exist
|
|
21
|
+
expect(browser.link(href: /non_control_elements.html/)).to exist
|
|
22
|
+
expect(browser.link(index: 1)).to exist
|
|
23
|
+
expect(browser.link(xpath: "//a[@id='link_2']")).to exist
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
it 'returns the first link if given no args' do
|
|
27
|
+
expect(browser.link).to exist
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
it 'strips spaces from href attribute when locating elements' do
|
|
31
|
+
expect(browser.link(href: /strip_space$/)).to exist
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
it "returns false if the link doesn't exist" do
|
|
35
|
+
expect(browser.link(id: 'no_such_id')).not_to exist
|
|
36
|
+
expect(browser.link(id: /no_such_id/)).not_to exist
|
|
37
|
+
expect(browser.link(title: 'no_such_title')).not_to exist
|
|
38
|
+
expect(browser.link(title: /no_such_title/)).not_to exist
|
|
39
|
+
expect(browser.link(text: 'no_such_text')).not_to exist
|
|
40
|
+
expect(browser.link(text: /no_such_text/i)).not_to exist
|
|
41
|
+
expect(browser.link(href: 'no_such_href')).not_to exist
|
|
42
|
+
expect(browser.link(href: /no_such_href/)).not_to exist
|
|
43
|
+
expect(browser.link(index: 1337)).not_to exist
|
|
44
|
+
expect(browser.link(xpath: "//a[@id='no_such_id']")).not_to exist
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
it "raises TypeError when 'what' argument is invalid" do
|
|
48
|
+
expect { browser.link(id: 3.14).exists? }.to raise_error(TypeError)
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
# Attribute methods
|
|
53
|
+
describe '#href' do
|
|
54
|
+
it 'returns the href attribute if the link exists' do
|
|
55
|
+
expect(browser.link(index: 1).href).to match(/non_control_elements/)
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
it "returns an empty string if the link exists and the attribute doesn't" do
|
|
59
|
+
expect(browser.link(index: 0).href).to eq ''
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
it "raises an UnknownObjectException if the link doesn't exist" do
|
|
63
|
+
expect { browser.link(index: 1337).href }.to raise_unknown_object_exception
|
|
64
|
+
end
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
describe '#id' do
|
|
68
|
+
it 'returns the id attribute if the link exists' do
|
|
69
|
+
expect(browser.link(index: 1).id).to eq 'link_2'
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
it "returns an empty string if the link exists and the attribute doesn't" do
|
|
73
|
+
expect(browser.link(index: 0).id).to eq ''
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
it "raises an UnknownObjectException if the link doesn't exist" do
|
|
77
|
+
expect { browser.link(index: 1337).id }.to raise_unknown_object_exception
|
|
78
|
+
end
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
describe '#text' do
|
|
82
|
+
it 'returns the link text' do
|
|
83
|
+
expect(browser.link(index: 1).text).to eq 'Link 2'
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
it 'returns an empty string if the link exists and contains no text' do
|
|
87
|
+
expect(browser.link(index: 0).text).to eq ''
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
it "raises an UnknownObjectException if the link doesn't exist" do
|
|
91
|
+
expect { browser.link(index: 1337).text }.to raise_unknown_object_exception
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
describe '#title' do
|
|
96
|
+
it 'returns the type attribute if the link exists' do
|
|
97
|
+
expect(browser.link(index: 1).title).to eq 'link_title_2'
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
it "returns an empty string if the link exists and the attribute doesn't" do
|
|
101
|
+
expect(browser.link(index: 0).title).to eq ''
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
it "raises an UnknownObjectException if the link doesn't exist" do
|
|
105
|
+
expect { browser.link(index: 1337).title }.to raise_unknown_object_exception
|
|
106
|
+
end
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
describe '#respond_to?' do
|
|
110
|
+
it 'returns true for all attribute methods' do
|
|
111
|
+
expect(browser.link(index: 0)).to respond_to(:class_name)
|
|
112
|
+
expect(browser.link(index: 0)).to respond_to(:href)
|
|
113
|
+
expect(browser.link(index: 0)).to respond_to(:id)
|
|
114
|
+
expect(browser.link(index: 0)).to respond_to(:style)
|
|
115
|
+
expect(browser.link(index: 0)).to respond_to(:text)
|
|
116
|
+
expect(browser.link(index: 0)).to respond_to(:title)
|
|
117
|
+
end
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
# Manipulation methods
|
|
121
|
+
# Note: the #wait_until calls are hacks for Safari specifically
|
|
122
|
+
describe '#click' do
|
|
123
|
+
it 'finds an existing link by (text: String) and clicks it' do
|
|
124
|
+
element = browser.link(text: 'Link 3')
|
|
125
|
+
element.wait_until { |link| !link.exist? || link.click }
|
|
126
|
+
expect(browser.h1(text: 'User administration')).to exist
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
it 'finds an existing link by (text: Regexp) and clicks it' do
|
|
130
|
+
element = browser.link(href: /forms_with_input_elements/)
|
|
131
|
+
element.wait_until { |link| !link.exist? || link.click }
|
|
132
|
+
expect(browser.h1(text: 'User administration')).to exist
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
it 'finds an existing link by (index: Integer) and clicks it' do
|
|
136
|
+
element = browser.link(index: 2)
|
|
137
|
+
element.wait_until { |link| !link.exist? || link.click }
|
|
138
|
+
expect(browser.h1(text: 'User administration')).to exist
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
it "raises an UnknownObjectException if the link doesn't exist" do
|
|
142
|
+
expect { browser.link(index: 1337).click }.to raise_unknown_object_exception
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
it 'clicks a link with no text content but an img child' do
|
|
146
|
+
browser.goto WatirSpec.url_for('images.html')
|
|
147
|
+
browser.link(href: /definition_lists.html/).click
|
|
148
|
+
browser.wait_while(title: /^(Images|)$/)
|
|
149
|
+
expect(browser.title).to eq 'definition_lists'
|
|
150
|
+
end
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
describe 'visible text' do
|
|
154
|
+
it 'finds links by visible text' do
|
|
155
|
+
browser.goto WatirSpec.url_for('non_control_elements.html')
|
|
156
|
+
|
|
157
|
+
expect(browser.link(visible_text: 'all visible')).to exist
|
|
158
|
+
expect(browser.link(visible_text: /all visible/)).to exist
|
|
159
|
+
expect(browser.link(visible_text: /some visible/)).to exist
|
|
160
|
+
|
|
161
|
+
expect(browser.link(visible_text: 'Link 2', class: 'external')).to exist
|
|
162
|
+
expect(browser.link(visible_text: /Link 2/, class: 'external')).to exist
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
it 'finds links in spite of hidden text' do
|
|
166
|
+
browser.goto WatirSpec.url_for('non_control_elements.html')
|
|
167
|
+
|
|
168
|
+
expect(browser.link(visible_text: 'some visible')).to exist
|
|
169
|
+
expect(browser.link(visible_text: 'none visible')).not_to exist
|
|
170
|
+
expect(browser.link(visible_text: /none visible/)).not_to exist
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
it 'raises exception unless value is a String or a RegExp' do
|
|
174
|
+
browser.goto WatirSpec.url_for('non_control_elements.html')
|
|
175
|
+
msg = /expected one of \[String, Regexp\], got 7:Integer/
|
|
176
|
+
expect { browser.link(visible_text: 7).exists? }.to raise_exception(TypeError, msg)
|
|
177
|
+
end
|
|
182
178
|
end
|
|
183
179
|
end
|
|
184
180
|
end
|
|
@@ -2,63 +2,65 @@
|
|
|
2
2
|
|
|
3
3
|
require 'watirspec_helper'
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
describe 'with selectors' do
|
|
11
|
-
it 'returns the matching elements' do
|
|
12
|
-
expect(browser.links(title: 'link_title_2').to_a).to eq [browser.link(title: 'link_title_2')]
|
|
5
|
+
module Watir
|
|
6
|
+
describe AnchorCollection do
|
|
7
|
+
before do
|
|
8
|
+
browser.goto(WatirSpec.url_for('non_control_elements.html'))
|
|
13
9
|
end
|
|
14
|
-
end
|
|
15
10
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
11
|
+
describe 'with selectors' do
|
|
12
|
+
it 'returns the matching elements' do
|
|
13
|
+
expect(browser.links(title: 'link_title_2').to_a).to eq [browser.link(title: 'link_title_2')]
|
|
14
|
+
end
|
|
19
15
|
end
|
|
20
|
-
end
|
|
21
16
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
17
|
+
describe '#length' do
|
|
18
|
+
it 'returns the number of links' do
|
|
19
|
+
expect(browser.links.length).to eq 7
|
|
20
|
+
end
|
|
25
21
|
end
|
|
26
22
|
|
|
27
|
-
|
|
28
|
-
|
|
23
|
+
describe '#[]' do
|
|
24
|
+
it 'returns the link at the given index' do
|
|
25
|
+
expect(browser.links[2].id).to eq 'link_3'
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
it 'returns a Link object also when the index is out of bounds' do
|
|
29
|
+
expect(browser.links[2000]).not_to be_nil
|
|
30
|
+
end
|
|
29
31
|
end
|
|
30
|
-
end
|
|
31
32
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
33
|
+
describe '#each' do
|
|
34
|
+
it 'iterates through links correctly' do
|
|
35
|
+
count = 0
|
|
35
36
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
browser.links.each_with_index do |c, index|
|
|
38
|
+
expect(c.id).to eq browser.link(index: index).id
|
|
39
|
+
count += 1
|
|
40
|
+
end
|
|
40
41
|
|
|
41
|
-
|
|
42
|
+
expect(count).to be > 0
|
|
43
|
+
end
|
|
42
44
|
end
|
|
43
|
-
end
|
|
44
45
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
46
|
+
describe 'visible text' do
|
|
47
|
+
it 'finds links by visible text' do
|
|
48
|
+
browser.goto WatirSpec.url_for('non_control_elements.html')
|
|
49
|
+
container = browser.div(id: 'visible_link')
|
|
50
|
+
expect(container.links(visible_text: 'all visible').count).to eq(1)
|
|
51
|
+
expect(container.links(visible_text: /all visible/).count).to eq(1)
|
|
52
|
+
expect(container.links(visible_text: /some visible/).count).to eq(1)
|
|
53
|
+
end
|
|
53
54
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
it 'finds links in spite of hidden text',
|
|
56
|
+
except: {browser: :safari, reason: 'Safari is not filtering out hidden text'} do
|
|
57
|
+
browser.goto WatirSpec.url_for('non_control_elements.html')
|
|
58
|
+
container = browser.div(id: 'visible_text')
|
|
58
59
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
60
|
+
expect(container.divs(visible_text: 'some visible').count).to eq(1)
|
|
61
|
+
expect(container.divs(visible_text: 'none visible').count).to eq(0)
|
|
62
|
+
expect(container.divs(visible_text: /none visible/).count).to eq(0)
|
|
63
|
+
end
|
|
62
64
|
end
|
|
63
65
|
end
|
|
64
66
|
end
|
|
@@ -2,41 +2,43 @@
|
|
|
2
2
|
|
|
3
3
|
require 'watirspec_helper'
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
module Watir
|
|
6
|
+
describe LICollection do
|
|
7
|
+
before do
|
|
8
|
+
browser.goto(WatirSpec.url_for('non_control_elements.html'))
|
|
9
|
+
end
|
|
9
10
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
describe 'with selectors' do
|
|
12
|
+
it 'returns the matching elements' do
|
|
13
|
+
expect(browser.lis(class: 'nonlink').to_a).to eq [browser.li(class: 'nonlink')]
|
|
14
|
+
end
|
|
13
15
|
end
|
|
14
|
-
end
|
|
15
16
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
describe '#length' do
|
|
18
|
+
it 'returns the number of lis' do
|
|
19
|
+
expect(browser.lis.length).to eq 18
|
|
20
|
+
end
|
|
19
21
|
end
|
|
20
|
-
end
|
|
21
22
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
describe '#[]' do
|
|
24
|
+
it 'returns the li at the given index' do
|
|
25
|
+
expect(browser.lis[4].id).to eq 'non_link_1'
|
|
26
|
+
end
|
|
25
27
|
end
|
|
26
|
-
end
|
|
27
28
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
describe '#each' do
|
|
30
|
+
it 'iterates through lis correctly' do
|
|
31
|
+
count = 0
|
|
31
32
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
33
|
+
browser.lis.each_with_index do |l, index|
|
|
34
|
+
expect(l.id).to eq browser.li(index: index).id
|
|
35
|
+
expect(l.value).to eq browser.li(index: index).value
|
|
35
36
|
|
|
36
|
-
|
|
37
|
-
|
|
37
|
+
count += 1
|
|
38
|
+
end
|
|
38
39
|
|
|
39
|
-
|
|
40
|
+
expect(count).to be > 0
|
|
41
|
+
end
|
|
40
42
|
end
|
|
41
43
|
end
|
|
42
44
|
end
|
|
@@ -2,47 +2,49 @@
|
|
|
2
2
|
|
|
3
3
|
require 'watirspec_helper'
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
items
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
items
|
|
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
|
-
|
|
5
|
+
module Watir
|
|
6
|
+
describe List do
|
|
7
|
+
before do
|
|
8
|
+
browser.goto(WatirSpec.url_for('non_control_elements.html'))
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
it 'returns the list items assocaited with an Ol' do
|
|
12
|
+
items = browser.ol(id: 'favorite_compounds').list_items
|
|
13
|
+
expect(items).to be_a Watir::LICollection
|
|
14
|
+
expect(items).to all(be_a Watir::LI)
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
it 'returns the list items assocaited with an Ul' do
|
|
18
|
+
items = browser.ul(id: 'navbar').list_items
|
|
19
|
+
expect(items).to be_a Watir::LICollection
|
|
20
|
+
expect(items).to all(be_a Watir::LI)
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
it 'gets the size of a list' do
|
|
24
|
+
ul = browser.ul(id: 'navbar')
|
|
25
|
+
expect(ul.size).to eq 7
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
it 'iterates over a list' do
|
|
29
|
+
ul = browser.ul(id: 'navbar')
|
|
30
|
+
expect(ul.map(&:tag_name)).to eq Array.new(7, 'li')
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
it 'gets a list item at the specified index' do
|
|
34
|
+
ul = browser.ul(id: 'navbar')
|
|
35
|
+
expect(ul[4].text).to eq 'Non-link 1'
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
it 'returns the list item size' do
|
|
39
|
+
items = browser.ol(id: 'favorite_compounds').list_items
|
|
40
|
+
expect(items.size).to eq 5
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
it 'returns list item at an index' do
|
|
44
|
+
items = browser.ol(id: 'favorite_compounds').list_items
|
|
45
|
+
third = browser.ol(id: 'favorite_compounds').li(index: 2)
|
|
46
|
+
|
|
47
|
+
expect(items[2]).to eq third
|
|
48
|
+
end
|
|
47
49
|
end
|
|
48
50
|
end
|