watir 6.10.1 → 6.10.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.document +5 -5
- data/.github/ISSUE_TEMPLATE.md +16 -16
- data/.gitignore +21 -21
- data/.travis.yml +72 -72
- data/CHANGES.md +4 -0
- data/Gemfile +16 -16
- data/LICENSE +23 -23
- data/README.md +106 -106
- data/Rakefile +153 -153
- data/appveyor.yml +13 -13
- data/lib/watir-webdriver.rb +2 -2
- data/lib/watir.rb +158 -158
- data/lib/watir/adjacent.rb +126 -126
- data/lib/watir/after_hooks.rb +132 -132
- data/lib/watir/alert.rb +120 -120
- data/lib/watir/aliases.rb +6 -6
- data/lib/watir/attribute_helper.rb +96 -96
- data/lib/watir/browser.rb +349 -349
- data/lib/watir/capabilities.rb +123 -123
- data/lib/watir/cell_container.rb +25 -25
- data/lib/watir/container.rb +51 -51
- data/lib/watir/cookies.rb +134 -134
- data/lib/watir/element_collection.rb +138 -138
- data/lib/watir/elements/area.rb +12 -12
- data/lib/watir/elements/button.rb +37 -37
- data/lib/watir/elements/cell.rb +17 -17
- data/lib/watir/elements/checkbox.rb +56 -56
- data/lib/watir/elements/dlist.rb +12 -12
- data/lib/watir/elements/element.rb +2 -2
- data/lib/watir/elements/file_field.rb +41 -41
- data/lib/watir/elements/font.rb +25 -25
- data/lib/watir/elements/form.rb +16 -16
- data/lib/watir/elements/hidden.rb +25 -25
- data/lib/watir/elements/html_elements.rb +2035 -2035
- data/lib/watir/elements/iframe.rb +166 -166
- data/lib/watir/elements/image.rb +21 -21
- data/lib/watir/elements/input.rb +15 -15
- data/lib/watir/elements/link.rb +18 -18
- data/lib/watir/elements/list.rb +49 -49
- data/lib/watir/elements/option.rb +72 -72
- data/lib/watir/elements/radio.rb +60 -60
- data/lib/watir/elements/row.rb +17 -17
- data/lib/watir/elements/select.rb +250 -250
- data/lib/watir/elements/svg_elements.rb +613 -613
- data/lib/watir/elements/table.rb +76 -76
- data/lib/watir/elements/table_cell.rb +31 -31
- data/lib/watir/elements/table_row.rb +32 -32
- data/lib/watir/elements/table_section.rb +15 -15
- data/lib/watir/elements/text_area.rb +5 -5
- data/lib/watir/elements/text_field.rb +39 -39
- data/lib/watir/exception.rb +16 -16
- data/lib/watir/extensions/nokogiri.rb +14 -14
- data/lib/watir/generator.rb +3 -3
- data/lib/watir/generator/base.rb +11 -11
- data/lib/watir/generator/base/generator.rb +115 -115
- data/lib/watir/generator/base/idl_sorter.rb +47 -47
- data/lib/watir/generator/base/spec_extractor.rb +138 -138
- data/lib/watir/generator/base/util.rb +21 -21
- data/lib/watir/generator/base/visitor.rb +162 -162
- data/lib/watir/generator/html.rb +15 -15
- data/lib/watir/generator/html/generator.rb +36 -36
- data/lib/watir/generator/html/spec_extractor.rb +50 -50
- data/lib/watir/generator/html/visitor.rb +21 -21
- data/lib/watir/generator/svg.rb +7 -7
- data/lib/watir/generator/svg/generator.rb +38 -38
- data/lib/watir/generator/svg/spec_extractor.rb +53 -53
- data/lib/watir/generator/svg/visitor.rb +21 -21
- data/lib/watir/has_window.rb +68 -68
- data/lib/watir/js_execution.rb +143 -143
- data/lib/watir/js_snippets.rb +16 -16
- data/lib/watir/js_snippets/backgroundColor.js +7 -7
- data/lib/watir/js_snippets/fireEvent.js +31 -31
- data/lib/watir/js_snippets/focus.js +3 -3
- data/lib/watir/js_snippets/getInnerHtml.js +19 -19
- data/lib/watir/js_snippets/getInnerText.js +19 -19
- data/lib/watir/js_snippets/getOuterHtml.js +20 -20
- data/lib/watir/js_snippets/getTextContent.js +19 -19
- data/lib/watir/js_snippets/isImageLoaded.js +3 -3
- data/lib/watir/js_snippets/selectOptionsLabel.js +10 -10
- data/lib/watir/js_snippets/selectOptionsText.js +10 -10
- data/lib/watir/js_snippets/selectOptionsValue.js +10 -10
- data/lib/watir/js_snippets/selectText.js +64 -64
- data/lib/watir/js_snippets/selectedOptions.js +11 -11
- data/lib/watir/js_snippets/setValue.js +3 -3
- data/lib/watir/legacy_wait.rb +126 -126
- data/lib/watir/locators.rb +60 -60
- data/lib/watir/locators/button/locator.rb +31 -31
- data/lib/watir/locators/button/selector_builder.rb +30 -30
- data/lib/watir/locators/button/selector_builder/xpath.rb +29 -29
- data/lib/watir/locators/button/validator.rb +15 -15
- data/lib/watir/locators/cell/locator.rb +15 -15
- data/lib/watir/locators/cell/selector_builder.rb +24 -24
- data/lib/watir/locators/element/selector_builder.rb +150 -150
- data/lib/watir/locators/element/selector_builder/xpath.rb +119 -119
- data/lib/watir/locators/element/validator.rb +18 -18
- data/lib/watir/locators/row/locator.rb +15 -15
- data/lib/watir/locators/row/selector_builder.rb +29 -29
- data/lib/watir/locators/text_area/locator.rb +13 -13
- data/lib/watir/locators/text_area/selector_builder.rb +22 -22
- data/lib/watir/locators/text_field/locator.rb +30 -30
- data/lib/watir/locators/text_field/selector_builder.rb +31 -31
- data/lib/watir/locators/text_field/selector_builder/xpath.rb +17 -17
- data/lib/watir/locators/text_field/validator.rb +12 -12
- data/lib/watir/logger.rb +109 -109
- data/lib/watir/radio_set.rb +231 -231
- data/lib/watir/row_container.rb +36 -36
- data/lib/watir/screenshot.rb +50 -50
- data/lib/watir/user_editable.rb +56 -56
- data/lib/watir/wait.rb +200 -200
- data/lib/watir/wait/timer.rb +52 -52
- data/lib/watir/window.rb +257 -257
- data/lib/watir/xpath_support.rb +20 -20
- data/lib/watirspec.rb +86 -86
- data/lib/watirspec/guards.rb +60 -60
- data/lib/watirspec/implementation.rb +51 -51
- data/lib/watirspec/rake_tasks.rb +115 -115
- data/lib/watirspec/remote_server.rb +38 -38
- data/lib/watirspec/runner.rb +53 -53
- data/lib/watirspec/server.rb +99 -99
- data/lib/watirspec/server/app.rb +76 -76
- data/spec/browser_spec.rb +278 -278
- data/spec/click_spec.rb +19 -19
- data/spec/container_spec.rb +34 -34
- data/spec/element_locator_spec.rb +517 -517
- data/spec/element_spec.rb +158 -158
- data/spec/implementation_spec.rb +24 -24
- data/spec/input_spec.rb +14 -14
- data/spec/locator_spec_helper.rb +55 -55
- data/spec/logger_spec.rb +46 -46
- data/spec/spec_helper.rb +22 -22
- data/spec/special_chars_spec.rb +13 -13
- data/spec/watirspec/adjacent_spec.rb +227 -227
- data/spec/watirspec/after_hooks_spec.rb +182 -182
- data/spec/watirspec/alert_spec.rb +108 -108
- data/spec/watirspec/attributes_spec.rb +16 -16
- data/spec/watirspec/browser_spec.rb +281 -281
- data/spec/watirspec/cookies_spec.rb +154 -154
- data/spec/watirspec/drag_and_drop_spec.rb +49 -49
- data/spec/watirspec/element_hidden_spec.rb +75 -75
- data/spec/watirspec/elements/area_spec.rb +72 -72
- data/spec/watirspec/elements/areas_spec.rb +42 -42
- data/spec/watirspec/elements/button_spec.rb +277 -277
- data/spec/watirspec/elements/buttons_spec.rb +55 -55
- data/spec/watirspec/elements/checkbox_spec.rb +275 -275
- data/spec/watirspec/elements/checkboxes_spec.rb +44 -44
- data/spec/watirspec/elements/collections_spec.rb +52 -52
- data/spec/watirspec/elements/dd_spec.rb +124 -124
- data/spec/watirspec/elements/dds_spec.rb +42 -42
- data/spec/watirspec/elements/del_spec.rb +126 -126
- data/spec/watirspec/elements/dels_spec.rb +40 -40
- data/spec/watirspec/elements/div_spec.rb +245 -245
- data/spec/watirspec/elements/divs_spec.rb +42 -42
- data/spec/watirspec/elements/dl_spec.rb +142 -142
- data/spec/watirspec/elements/dls_spec.rb +43 -43
- data/spec/watirspec/elements/dt_spec.rb +122 -122
- data/spec/watirspec/elements/dts_spec.rb +42 -42
- data/spec/watirspec/elements/element_spec.rb +483 -483
- data/spec/watirspec/elements/elements_spec.rb +47 -47
- data/spec/watirspec/elements/em_spec.rb +96 -96
- data/spec/watirspec/elements/ems_spec.rb +43 -43
- data/spec/watirspec/elements/filefield_spec.rb +170 -170
- data/spec/watirspec/elements/filefields_spec.rb +43 -43
- data/spec/watirspec/elements/font_spec.rb +29 -29
- data/spec/watirspec/elements/form_spec.rb +66 -66
- data/spec/watirspec/elements/forms_spec.rb +46 -46
- data/spec/watirspec/elements/frame_spec.rb +123 -123
- data/spec/watirspec/elements/frames_spec.rb +41 -41
- data/spec/watirspec/elements/hidden_spec.rb +104 -104
- data/spec/watirspec/elements/hiddens_spec.rb +43 -43
- data/spec/watirspec/elements/hn_spec.rb +92 -92
- data/spec/watirspec/elements/hns_spec.rb +38 -38
- data/spec/watirspec/elements/iframe_spec.rb +3 -0
- data/spec/watirspec/elements/iframes_spec.rb +47 -47
- data/spec/watirspec/elements/image_spec.rb +158 -158
- data/spec/watirspec/elements/images_spec.rb +40 -40
- data/spec/watirspec/elements/ins_spec.rb +127 -127
- data/spec/watirspec/elements/inses_spec.rb +40 -40
- data/spec/watirspec/elements/label_spec.rb +75 -75
- data/spec/watirspec/elements/labels_spec.rb +40 -40
- data/spec/watirspec/elements/li_spec.rb +111 -111
- data/spec/watirspec/elements/link_spec.rb +171 -171
- data/spec/watirspec/elements/links_spec.rb +44 -44
- data/spec/watirspec/elements/lis_spec.rb +42 -42
- data/spec/watirspec/elements/list_spec.rb +32 -32
- data/spec/watirspec/elements/map_spec.rb +75 -75
- data/spec/watirspec/elements/maps_spec.rb +41 -41
- data/spec/watirspec/elements/meta_spec.rb +23 -23
- data/spec/watirspec/elements/metas_spec.rb +40 -40
- data/spec/watirspec/elements/ol_spec.rb +87 -87
- data/spec/watirspec/elements/ols_spec.rb +40 -40
- data/spec/watirspec/elements/option_spec.rb +121 -121
- data/spec/watirspec/elements/p_spec.rb +111 -111
- data/spec/watirspec/elements/pre_spec.rb +111 -111
- data/spec/watirspec/elements/pres_spec.rb +40 -40
- data/spec/watirspec/elements/ps_spec.rb +40 -40
- data/spec/watirspec/elements/radio_spec.rb +273 -273
- data/spec/watirspec/elements/radios_spec.rb +43 -43
- data/spec/watirspec/elements/select_list_spec.rb +553 -553
- data/spec/watirspec/elements/select_lists_spec.rb +46 -46
- data/spec/watirspec/elements/span_spec.rb +128 -128
- data/spec/watirspec/elements/spans_spec.rb +40 -40
- data/spec/watirspec/elements/strong_spec.rb +88 -88
- data/spec/watirspec/elements/strongs_spec.rb +43 -43
- data/spec/watirspec/elements/table_nesting_spec.rb +51 -51
- data/spec/watirspec/elements/table_spec.rb +156 -156
- data/spec/watirspec/elements/tables_spec.rb +42 -42
- data/spec/watirspec/elements/tbody_spec.rb +93 -93
- data/spec/watirspec/elements/tbodys_spec.rb +62 -62
- data/spec/watirspec/elements/td_spec.rb +93 -93
- data/spec/watirspec/elements/tds_spec.rb +53 -53
- data/spec/watirspec/elements/text_field_spec.rb +360 -360
- data/spec/watirspec/elements/text_fields_spec.rb +44 -44
- data/spec/watirspec/elements/textarea_spec.rb +26 -26
- data/spec/watirspec/elements/textareas_spec.rb +24 -24
- data/spec/watirspec/elements/tfoot_spec.rb +86 -86
- data/spec/watirspec/elements/tfoots_spec.rb +68 -68
- data/spec/watirspec/elements/thead_spec.rb +86 -86
- data/spec/watirspec/elements/theads_spec.rb +68 -68
- data/spec/watirspec/elements/tr_spec.rb +78 -78
- data/spec/watirspec/elements/trs_spec.rb +61 -61
- data/spec/watirspec/elements/ul_spec.rb +76 -76
- data/spec/watirspec/elements/uls_spec.rb +39 -39
- data/spec/watirspec/html/alerts.html +12 -12
- data/spec/watirspec/html/aria_attributes.html +9 -9
- data/spec/watirspec/html/class_locator.html +8 -8
- data/spec/watirspec/html/clicks.html +19 -19
- data/spec/watirspec/html/closeable.html +12 -12
- data/spec/watirspec/html/collections.html +14 -14
- data/spec/watirspec/html/css/jquery-ui-1.8.17.custom.css +286 -286
- data/spec/watirspec/html/data_attributes.html +9 -9
- data/spec/watirspec/html/definition_lists.html +47 -47
- data/spec/watirspec/html/drag_and_drop.html +106 -106
- data/spec/watirspec/html/font.html +10 -10
- data/spec/watirspec/html/forms_with_input_elements.html +174 -174
- data/spec/watirspec/html/frame_1.html +22 -22
- data/spec/watirspec/html/frame_2.html +15 -15
- data/spec/watirspec/html/frames.html +10 -10
- data/spec/watirspec/html/hover.html +11 -11
- data/spec/watirspec/html/iframe_1.html +22 -22
- data/spec/watirspec/html/iframes.html +12 -12
- data/spec/watirspec/html/images.html +27 -27
- data/spec/watirspec/html/inner_outer.html +4 -4
- data/spec/watirspec/html/javascript/angular.min.js +331 -331
- data/spec/watirspec/html/javascript/helpers.js +16 -16
- data/spec/watirspec/html/javascript/jquery-1.7.1.min.js +3 -3
- data/spec/watirspec/html/javascript/jquery-ui-1.8.17.custom.min.js +67 -67
- data/spec/watirspec/html/keylogger.html +14 -14
- data/spec/watirspec/html/modal_dialog.html +9 -9
- data/spec/watirspec/html/multiple_ids.html +14 -14
- data/spec/watirspec/html/nested_elements.html +33 -33
- data/spec/watirspec/html/nested_frame_2.html +9 -9
- data/spec/watirspec/html/nested_frame_3.html +14 -14
- data/spec/watirspec/html/nested_frames.html +10 -10
- data/spec/watirspec/html/nested_iframe_2.html +12 -12
- data/spec/watirspec/html/nested_iframes.html +13 -13
- data/spec/watirspec/html/nested_tables.html +202 -202
- data/spec/watirspec/html/non_control_elements.html +140 -140
- data/spec/watirspec/html/removed_element.html +24 -24
- data/spec/watirspec/html/right_click.html +10 -10
- data/spec/watirspec/html/special_chars.html +11 -11
- data/spec/watirspec/html/tables.html +120 -120
- data/spec/watirspec/html/timeout_window_location.html +19 -19
- data/spec/watirspec/html/uneven_table.html +20 -20
- data/spec/watirspec/html/wait.html +84 -84
- data/spec/watirspec/html/window_switching.html +11 -11
- data/spec/watirspec/radio_set_spec.rb +336 -336
- data/spec/watirspec/relaxed_locate_spec.rb +99 -99
- data/spec/watirspec/screenshot_spec.rb +29 -29
- data/spec/watirspec/support/raise_exception_matchers.rb +36 -36
- data/spec/watirspec/wait_spec.rb +381 -381
- data/spec/watirspec/window_switching_spec.rb +415 -415
- data/spec/watirspec_helper.rb +161 -161
- data/support/appveyor.cmd +9 -9
- data/support/doctest_helper.rb +101 -101
- data/support/travis.sh +11 -11
- data/support/version_differ.rb +59 -59
- data/watir.gemspec +1 -1
- metadata +169 -3
@@ -1,99 +1,99 @@
|
|
1
|
-
require "watirspec_helper"
|
2
|
-
|
3
|
-
describe 'Watir#relaxed_locate?' do
|
4
|
-
not_compliant_on :not_relaxed_locate do
|
5
|
-
context 'when true' do
|
6
|
-
before :each do
|
7
|
-
browser.goto(WatirSpec.url_for("wait.html"))
|
8
|
-
end
|
9
|
-
|
10
|
-
context 'when acting on an element that is never present' do
|
11
|
-
it 'raises exception after timing out' do
|
12
|
-
begin
|
13
|
-
time_out = 2
|
14
|
-
Watir.default_timeout = time_out
|
15
|
-
element = browser.link(id: 'not_there')
|
16
|
-
start_time = ::Time.now
|
17
|
-
allow($stderr).to receive(:write).twice
|
18
|
-
expect { element.click }.to raise_exception(Watir::Exception::UnknownObjectException)
|
19
|
-
expect(::Time.now - start_time).to be > time_out
|
20
|
-
ensure
|
21
|
-
Watir.default_timeout = 30
|
22
|
-
end
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
|
-
context 'when acting on an element that is already present' do
|
27
|
-
it 'does not wait' do
|
28
|
-
begin
|
29
|
-
Watir.default_timeout = 5
|
30
|
-
start_time = ::Time.now
|
31
|
-
expect { browser.link.click }.to_not raise_exception
|
32
|
-
expect(::Time.now - start_time).to be < 5
|
33
|
-
ensure
|
34
|
-
Watir.default_timeout = 30
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
38
|
-
|
39
|
-
context 'when acting on an element that eventually becomes present' do
|
40
|
-
bug "https://github.com/SeleniumHQ/selenium/issues/4380", %i{remote firefox} do
|
41
|
-
it 'waits until present and then takes action' do
|
42
|
-
begin
|
43
|
-
Watir.default_timeout = 3
|
44
|
-
start_time = ::Time.now
|
45
|
-
browser.a(id: 'show_bar').click
|
46
|
-
expect { browser.div(id: 'bar').click }.to_not raise_exception
|
47
|
-
expect(::Time.now - start_time).to be < 3
|
48
|
-
ensure
|
49
|
-
Watir.default_timeout = 30
|
50
|
-
end
|
51
|
-
end
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
it 'ensures all checks happen once even if time has expired' do
|
56
|
-
begin
|
57
|
-
Watir.default_timeout = -1
|
58
|
-
expect { browser.link.click }.to_not raise_exception
|
59
|
-
ensure
|
60
|
-
Watir.default_timeout = 30
|
61
|
-
end
|
62
|
-
end
|
63
|
-
end
|
64
|
-
end
|
65
|
-
|
66
|
-
not_compliant_on :relaxed_locate do
|
67
|
-
context 'when false' do
|
68
|
-
before :each do
|
69
|
-
browser.goto(WatirSpec.url_for("wait.html"))
|
70
|
-
end
|
71
|
-
|
72
|
-
context 'when acting on an element that is never present' do
|
73
|
-
it 'raises exception immediately' do
|
74
|
-
begin
|
75
|
-
time_out = 2
|
76
|
-
Watir.default_timeout = time_out
|
77
|
-
element = browser.link(id: 'not_there')
|
78
|
-
start_time = ::Time.now
|
79
|
-
expect { element.click }.to raise_exception(Watir::Exception::UnknownObjectException)
|
80
|
-
expect(::Time.now - start_time).to be < 1
|
81
|
-
ensure
|
82
|
-
Watir.default_timeout = 30
|
83
|
-
end
|
84
|
-
end
|
85
|
-
end
|
86
|
-
|
87
|
-
context 'when acting on an element that eventually becomes present' do
|
88
|
-
it 'raises exception immediately' do
|
89
|
-
start_time = ::Time.now
|
90
|
-
browser.a(id: 'show_bar').click
|
91
|
-
|
92
|
-
expect { browser.div(id: 'bar').click }.to raise_unknown_object_exception
|
93
|
-
|
94
|
-
expect(::Time.now - start_time).to be < 1
|
95
|
-
end
|
96
|
-
end
|
97
|
-
end
|
98
|
-
end
|
99
|
-
end
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe 'Watir#relaxed_locate?' do
|
4
|
+
not_compliant_on :not_relaxed_locate do
|
5
|
+
context 'when true' do
|
6
|
+
before :each do
|
7
|
+
browser.goto(WatirSpec.url_for("wait.html"))
|
8
|
+
end
|
9
|
+
|
10
|
+
context 'when acting on an element that is never present' do
|
11
|
+
it 'raises exception after timing out' do
|
12
|
+
begin
|
13
|
+
time_out = 2
|
14
|
+
Watir.default_timeout = time_out
|
15
|
+
element = browser.link(id: 'not_there')
|
16
|
+
start_time = ::Time.now
|
17
|
+
allow($stderr).to receive(:write).twice
|
18
|
+
expect { element.click }.to raise_exception(Watir::Exception::UnknownObjectException)
|
19
|
+
expect(::Time.now - start_time).to be > time_out
|
20
|
+
ensure
|
21
|
+
Watir.default_timeout = 30
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
context 'when acting on an element that is already present' do
|
27
|
+
it 'does not wait' do
|
28
|
+
begin
|
29
|
+
Watir.default_timeout = 5
|
30
|
+
start_time = ::Time.now
|
31
|
+
expect { browser.link.click }.to_not raise_exception
|
32
|
+
expect(::Time.now - start_time).to be < 5
|
33
|
+
ensure
|
34
|
+
Watir.default_timeout = 30
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
context 'when acting on an element that eventually becomes present' do
|
40
|
+
bug "https://github.com/SeleniumHQ/selenium/issues/4380", %i{remote firefox} do
|
41
|
+
it 'waits until present and then takes action' do
|
42
|
+
begin
|
43
|
+
Watir.default_timeout = 3
|
44
|
+
start_time = ::Time.now
|
45
|
+
browser.a(id: 'show_bar').click
|
46
|
+
expect { browser.div(id: 'bar').click }.to_not raise_exception
|
47
|
+
expect(::Time.now - start_time).to be < 3
|
48
|
+
ensure
|
49
|
+
Watir.default_timeout = 30
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
it 'ensures all checks happen once even if time has expired' do
|
56
|
+
begin
|
57
|
+
Watir.default_timeout = -1
|
58
|
+
expect { browser.link.click }.to_not raise_exception
|
59
|
+
ensure
|
60
|
+
Watir.default_timeout = 30
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
not_compliant_on :relaxed_locate do
|
67
|
+
context 'when false' do
|
68
|
+
before :each do
|
69
|
+
browser.goto(WatirSpec.url_for("wait.html"))
|
70
|
+
end
|
71
|
+
|
72
|
+
context 'when acting on an element that is never present' do
|
73
|
+
it 'raises exception immediately' do
|
74
|
+
begin
|
75
|
+
time_out = 2
|
76
|
+
Watir.default_timeout = time_out
|
77
|
+
element = browser.link(id: 'not_there')
|
78
|
+
start_time = ::Time.now
|
79
|
+
expect { element.click }.to raise_exception(Watir::Exception::UnknownObjectException)
|
80
|
+
expect(::Time.now - start_time).to be < 1
|
81
|
+
ensure
|
82
|
+
Watir.default_timeout = 30
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
context 'when acting on an element that eventually becomes present' do
|
88
|
+
it 'raises exception immediately' do
|
89
|
+
start_time = ::Time.now
|
90
|
+
browser.a(id: 'show_bar').click
|
91
|
+
|
92
|
+
expect { browser.div(id: 'bar').click }.to raise_unknown_object_exception
|
93
|
+
|
94
|
+
expect(::Time.now - start_time).to be < 1
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
@@ -1,29 +1,29 @@
|
|
1
|
-
require "base64"
|
2
|
-
require "watirspec_helper"
|
3
|
-
|
4
|
-
describe "Watir::Screenshot" do
|
5
|
-
let(:png_header) { "\211PNG".force_encoding('ASCII-8BIT') }
|
6
|
-
|
7
|
-
describe '#png' do
|
8
|
-
it 'gets png representation of screenshot' do
|
9
|
-
expect(browser.screenshot.png[0..3]).to eq png_header
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
|
-
describe '#base64' do
|
14
|
-
it 'gets base64 representation of screenshot' do
|
15
|
-
image = browser.screenshot.base64
|
16
|
-
expect(Base64.decode64(image)[0..3]).to eq png_header
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
describe '#save' do
|
21
|
-
it 'saves screenshot to given file' do
|
22
|
-
path = "#{Dir.tmpdir}/test#{Time.now.to_i}.png"
|
23
|
-
expect(File).to_not exist(path)
|
24
|
-
browser.screenshot.save(path)
|
25
|
-
expect(File).to exist(path)
|
26
|
-
expect(File.open(path, "rb") { |io| io.read }[0..3]).to eq png_header
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
1
|
+
require "base64"
|
2
|
+
require "watirspec_helper"
|
3
|
+
|
4
|
+
describe "Watir::Screenshot" do
|
5
|
+
let(:png_header) { "\211PNG".force_encoding('ASCII-8BIT') }
|
6
|
+
|
7
|
+
describe '#png' do
|
8
|
+
it 'gets png representation of screenshot' do
|
9
|
+
expect(browser.screenshot.png[0..3]).to eq png_header
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
describe '#base64' do
|
14
|
+
it 'gets base64 representation of screenshot' do
|
15
|
+
image = browser.screenshot.base64
|
16
|
+
expect(Base64.decode64(image)[0..3]).to eq png_header
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
describe '#save' do
|
21
|
+
it 'saves screenshot to given file' do
|
22
|
+
path = "#{Dir.tmpdir}/test#{Time.now.to_i}.png"
|
23
|
+
expect(File).to_not exist(path)
|
24
|
+
browser.screenshot.save(path)
|
25
|
+
expect(File).to exist(path)
|
26
|
+
expect(File.open(path, "rb") { |io| io.read }[0..3]).to eq png_header
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -1,36 +1,36 @@
|
|
1
|
-
if defined?(RSpec)
|
2
|
-
TIMING_EXCEPTIONS = {
|
3
|
-
raise_unknown_object_exception: Watir::Exception::UnknownObjectException,
|
4
|
-
raise_no_matching_window_exception: Watir::Exception::NoMatchingWindowFoundException,
|
5
|
-
raise_unknown_frame_exception: Watir::Exception::UnknownFrameException,
|
6
|
-
raise_object_disabled_exception: Watir::Exception::ObjectDisabledException,
|
7
|
-
raise_object_read_only_exception: Watir::Exception::ObjectReadOnlyException,
|
8
|
-
raise_no_value_found_exception: Watir::Exception::NoValueFoundException
|
9
|
-
}.freeze
|
10
|
-
|
11
|
-
TIMING_EXCEPTIONS.each do |matcher, exception|
|
12
|
-
RSpec::Matchers.define matcher do |message|
|
13
|
-
match do |actual|
|
14
|
-
original_timeout = Watir.default_timeout
|
15
|
-
Watir.default_timeout = 0
|
16
|
-
begin
|
17
|
-
actual.call
|
18
|
-
false
|
19
|
-
rescue exception => ex
|
20
|
-
raise exception, "expected '#{message}' to be included in: '#{ex.message}'" unless message.nil? || ex.message.include?(message)
|
21
|
-
true
|
22
|
-
ensure
|
23
|
-
Watir.default_timeout = original_timeout
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
failure_message do |_actual|
|
28
|
-
"expected #{exception} but nothing was raised"
|
29
|
-
end
|
30
|
-
|
31
|
-
def supports_block_expectations?
|
32
|
-
true
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
1
|
+
if defined?(RSpec)
|
2
|
+
TIMING_EXCEPTIONS = {
|
3
|
+
raise_unknown_object_exception: Watir::Exception::UnknownObjectException,
|
4
|
+
raise_no_matching_window_exception: Watir::Exception::NoMatchingWindowFoundException,
|
5
|
+
raise_unknown_frame_exception: Watir::Exception::UnknownFrameException,
|
6
|
+
raise_object_disabled_exception: Watir::Exception::ObjectDisabledException,
|
7
|
+
raise_object_read_only_exception: Watir::Exception::ObjectReadOnlyException,
|
8
|
+
raise_no_value_found_exception: Watir::Exception::NoValueFoundException
|
9
|
+
}.freeze
|
10
|
+
|
11
|
+
TIMING_EXCEPTIONS.each do |matcher, exception|
|
12
|
+
RSpec::Matchers.define matcher do |message|
|
13
|
+
match do |actual|
|
14
|
+
original_timeout = Watir.default_timeout
|
15
|
+
Watir.default_timeout = 0
|
16
|
+
begin
|
17
|
+
actual.call
|
18
|
+
false
|
19
|
+
rescue exception => ex
|
20
|
+
raise exception, "expected '#{message}' to be included in: '#{ex.message}'" unless message.nil? || ex.message.include?(message)
|
21
|
+
true
|
22
|
+
ensure
|
23
|
+
Watir.default_timeout = original_timeout
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
failure_message do |_actual|
|
28
|
+
"expected #{exception} but nothing was raised"
|
29
|
+
end
|
30
|
+
|
31
|
+
def supports_block_expectations?
|
32
|
+
true
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
data/spec/watirspec/wait_spec.rb
CHANGED
@@ -1,381 +1,381 @@
|
|
1
|
-
require "watirspec_helper"
|
2
|
-
|
3
|
-
describe Watir::Wait do
|
4
|
-
describe "#until" do
|
5
|
-
it "waits until the block returns true" do
|
6
|
-
Watir::Wait.until(timeout: 0.5) { @result = true }
|
7
|
-
expect(@result).to be true
|
8
|
-
end
|
9
|
-
|
10
|
-
it "executes block if timeout is zero" do
|
11
|
-
Watir::Wait.until(timeout: 0) { @result = true }
|
12
|
-
expect(@result).to be true
|
13
|
-
end
|
14
|
-
|
15
|
-
it "times out" do
|
16
|
-
expect { Watir::Wait.until(timeout: 0.5) { false } }.to raise_error(Watir::Wait::TimeoutError)
|
17
|
-
end
|
18
|
-
|
19
|
-
it "times out with a custom message" do
|
20
|
-
expect {
|
21
|
-
Watir::Wait.until(timeout: 0.5, message: "oops") { false }
|
22
|
-
}.to raise_error(Watir::Wait::TimeoutError, "timed out after 0.5 seconds, oops")
|
23
|
-
end
|
24
|
-
|
25
|
-
it "uses provided interval" do
|
26
|
-
begin
|
27
|
-
Watir::Wait.until(timeout: 0.4, interval: 0.2) do
|
28
|
-
@result = @result.nil? ? 1 : @result + 1
|
29
|
-
false
|
30
|
-
end
|
31
|
-
rescue Watir::Wait::TimeoutError
|
32
|
-
end
|
33
|
-
expect(@result).to eq 2
|
34
|
-
end
|
35
|
-
|
36
|
-
it "uses timer for waiting" do
|
37
|
-
timer = Watir::Wait.timer
|
38
|
-
expect(timer).to receive(:wait).with(0.5).and_call_original
|
39
|
-
Watir::Wait.until(timeout: 0.5) { true }
|
40
|
-
end
|
41
|
-
end
|
42
|
-
|
43
|
-
describe "#while" do
|
44
|
-
it "waits while the block returns true" do
|
45
|
-
expect(Watir::Wait.while(timeout: 0.5) { false }).to be_nil
|
46
|
-
end
|
47
|
-
|
48
|
-
it "executes block if timeout is zero" do
|
49
|
-
expect(Watir::Wait.while(timeout: 0) { false }).to be_nil
|
50
|
-
end
|
51
|
-
|
52
|
-
it "times out" do
|
53
|
-
expect { Watir::Wait.while(timeout: 0.5) { true } }.to raise_error(Watir::Wait::TimeoutError)
|
54
|
-
end
|
55
|
-
|
56
|
-
it "times out with a custom message" do
|
57
|
-
expect {
|
58
|
-
Watir::Wait.while(timeout: 0.5, message: "oops") { true }
|
59
|
-
}.to raise_error(Watir::Wait::TimeoutError, "timed out after 0.5 seconds, oops")
|
60
|
-
end
|
61
|
-
|
62
|
-
it "uses provided interval" do
|
63
|
-
begin
|
64
|
-
Watir::Wait.while(timeout: 0.4, interval: 0.2) do
|
65
|
-
@result = @result.nil? ? 1 : @result + 1
|
66
|
-
true
|
67
|
-
end
|
68
|
-
rescue Watir::Wait::TimeoutError
|
69
|
-
end
|
70
|
-
expect(@result).to eq 2
|
71
|
-
end
|
72
|
-
|
73
|
-
it "uses timer for waiting" do
|
74
|
-
timer = Watir::Wait.timer
|
75
|
-
expect(timer).to receive(:wait).with(0.5).and_call_original
|
76
|
-
Watir::Wait.while(timeout: 0.5) { false }
|
77
|
-
end
|
78
|
-
end
|
79
|
-
|
80
|
-
describe "#timer" do
|
81
|
-
it "returns default timer" do
|
82
|
-
expect(Watir::Wait.timer).to be_a(Watir::Wait::Timer)
|
83
|
-
end
|
84
|
-
end
|
85
|
-
|
86
|
-
describe "#timer=" do
|
87
|
-
after { Watir::Wait.timer = nil }
|
88
|
-
|
89
|
-
it "changes default timer" do
|
90
|
-
timer = Class.new
|
91
|
-
Watir::Wait.timer = timer
|
92
|
-
expect(Watir::Wait.timer).to eq(timer)
|
93
|
-
end
|
94
|
-
end
|
95
|
-
end
|
96
|
-
|
97
|
-
describe Watir::Element do
|
98
|
-
before do
|
99
|
-
browser.goto WatirSpec.url_for("wait.html")
|
100
|
-
end
|
101
|
-
|
102
|
-
# TODO: This is deprecated; remove in future version
|
103
|
-
not_compliant_on :relaxed_locate do
|
104
|
-
describe "#when_present" do
|
105
|
-
it "invokes subsequent method calls when the element becomes present" do
|
106
|
-
browser.a(id: 'show_bar').click
|
107
|
-
|
108
|
-
bar = browser.div(id: 'bar')
|
109
|
-
bar.when_present(2).click
|
110
|
-
expect(bar.text).to eq "changed"
|
111
|
-
end
|
112
|
-
|
113
|
-
it "times out when given a block" do
|
114
|
-
expect { browser.div(id: 'bar').when_present(1) {} }.to raise_error(Watir::Wait::TimeoutError)
|
115
|
-
end
|
116
|
-
|
117
|
-
it "times out when not given a block" do
|
118
|
-
message = /^timed out after 1 seconds, waiting for (\{:id=>"bar", :tag_name=>"div"\}|\{:tag_name=>"div", :id=>"bar"\}) to become present$/
|
119
|
-
expect { browser.div(id: 'bar').when_present(1).click }.to raise_error(Watir::Wait::TimeoutError, message)
|
120
|
-
end
|
121
|
-
|
122
|
-
it "responds to Element methods" do
|
123
|
-
decorator = browser.div.when_present
|
124
|
-
|
125
|
-
expect(decorator).to respond_to(:exist?)
|
126
|
-
expect(decorator).to respond_to(:present?)
|
127
|
-
expect(decorator).to respond_to(:click)
|
128
|
-
end
|
129
|
-
|
130
|
-
it "delegates present? to element" do
|
131
|
-
Object.class_eval do
|
132
|
-
def present?
|
133
|
-
false
|
134
|
-
end
|
135
|
-
end
|
136
|
-
element = browser.a(id: "show_bar").when_present(1)
|
137
|
-
expect(element).to be_present
|
138
|
-
end
|
139
|
-
|
140
|
-
it "processes before calling present?" do
|
141
|
-
browser.a(id: 'show_bar').click
|
142
|
-
expect(browser.div(id: 'bar').when_present.present?).to be true
|
143
|
-
end
|
144
|
-
end
|
145
|
-
end
|
146
|
-
|
147
|
-
compliant_on :relaxed_locate do
|
148
|
-
it "clicking automatically waits until the element appears" do
|
149
|
-
browser.a(id: 'show_bar').click
|
150
|
-
expect { browser.div(id: 'bar').click }.to_not raise_exception
|
151
|
-
expect(browser.div(id: 'bar').text).to eq 'changed'
|
152
|
-
end
|
153
|
-
|
154
|
-
it "raises exception if the element doesn't appear" do
|
155
|
-
expect { browser.div(id: 'bar').click }.to raise_unknown_object_exception
|
156
|
-
end
|
157
|
-
|
158
|
-
it "raises exception if the element doesn't become enabled" do
|
159
|
-
expect { browser.button(id: 'btn').click }.to raise_object_disabled_exception
|
160
|
-
end
|
161
|
-
|
162
|
-
end
|
163
|
-
|
164
|
-
not_compliant_on :relaxed_locate do
|
165
|
-
describe "#wait_until &:enabled?" do
|
166
|
-
it "invokes subsequent method calls when the element becomes enabled" do
|
167
|
-
browser.a(id: 'enable_btn').click
|
168
|
-
|
169
|
-
btn = browser.button(id: 'btn')
|
170
|
-
btn.wait_until(timeout: 2, &:enabled?).click
|
171
|
-
Watir::Wait.while { btn.enabled? }
|
172
|
-
expect(btn.disabled?).to be true
|
173
|
-
end
|
174
|
-
|
175
|
-
it "times out" do
|
176
|
-
error = Watir::Wait::TimeoutError
|
177
|
-
inspected = '#<Watir::Button: located: false; {:id=>"btn", :tag_name=>"button"}>'
|
178
|
-
message = "timed out after 1 seconds, waiting for true condition on #{inspected}"
|
179
|
-
element = browser.button(id: 'btn')
|
180
|
-
expect { element.wait_until(timeout: 1, &:enabled?).click }.to raise_error(error, message)
|
181
|
-
end
|
182
|
-
|
183
|
-
it "responds to Element methods" do
|
184
|
-
element = browser.button.wait_until { true }
|
185
|
-
|
186
|
-
expect(element).to respond_to(:exist?)
|
187
|
-
expect(element).to respond_to(:present?)
|
188
|
-
expect(element).to respond_to(:click)
|
189
|
-
end
|
190
|
-
|
191
|
-
it "can be chained with #wait_until &:present?" do
|
192
|
-
browser.a(id: 'show_and_enable_btn').click
|
193
|
-
browser.button(id: 'btn2').wait_until(&:present?).wait_until(&:enabled?).click
|
194
|
-
|
195
|
-
expect(browser.button(id: 'btn2')).to exist
|
196
|
-
expect(browser.button(id: 'btn2')).to be_enabled
|
197
|
-
end
|
198
|
-
end
|
199
|
-
end
|
200
|
-
|
201
|
-
describe "#wait_until_present" do
|
202
|
-
it "waits until the element appears" do
|
203
|
-
browser.a(id: 'show_bar').click
|
204
|
-
expect { browser.div(id: 'bar').wait_until_present(timeout: 5) }.to_not raise_exception
|
205
|
-
end
|
206
|
-
|
207
|
-
it "times out if the element doesn't appear" do
|
208
|
-
inspected = '#<Watir::Div: located: false; {:id=>"bar", :tag_name=>"div"}>'
|
209
|
-
error = Watir::Wait::TimeoutError
|
210
|
-
message = "timed out after 1 seconds, waiting for true condition on #{inspected}"
|
211
|
-
|
212
|
-
expect { browser.div(id: 'bar').wait_until_present(timeout: 1) }.to raise_error(error, message)
|
213
|
-
end
|
214
|
-
|
215
|
-
it "uses provided interval" do
|
216
|
-
element = browser.div(id: 'bar')
|
217
|
-
expect(element).to receive(:present?).twice
|
218
|
-
|
219
|
-
begin
|
220
|
-
element.wait_until_present(timeout: 0.4, interval: 0.2)
|
221
|
-
rescue Watir::Wait::TimeoutError
|
222
|
-
end
|
223
|
-
end
|
224
|
-
end
|
225
|
-
|
226
|
-
describe "#wait_while_present" do
|
227
|
-
it "waits until the element disappears" do
|
228
|
-
browser.a(id: 'hide_foo').click
|
229
|
-
expect { browser.div(id: 'foo').wait_while_present(timeout: 2) }.to_not raise_exception
|
230
|
-
end
|
231
|
-
|
232
|
-
it "times out if the element doesn't disappear" do
|
233
|
-
error = Watir::Wait::TimeoutError
|
234
|
-
inspected = '#<Watir::Div: located: false; {:id=>"foo", :tag_name=>"div"}>'
|
235
|
-
message = "timed out after 1 seconds, waiting for false condition on #{inspected}"
|
236
|
-
expect { browser.div(id: 'foo').wait_while_present(timeout: 1) }.to raise_error(error, message)
|
237
|
-
end
|
238
|
-
|
239
|
-
it "uses provided interval" do
|
240
|
-
element = browser.div(id: 'foo')
|
241
|
-
expect(element).to receive(:present?).twice
|
242
|
-
|
243
|
-
begin
|
244
|
-
element.wait_until_present(timeout: 0.4, interval: 0.2)
|
245
|
-
rescue Watir::Wait::TimeoutError
|
246
|
-
end
|
247
|
-
end
|
248
|
-
|
249
|
-
it "does not error when element goes stale" do
|
250
|
-
element = browser.div(id: 'foo')
|
251
|
-
|
252
|
-
allow(element).to receive(:stale?).and_return(false, true)
|
253
|
-
allow(element.wd).to receive(:displayed?).and_raise(Selenium::WebDriver::Error::StaleElementReferenceError)
|
254
|
-
|
255
|
-
browser.a(id: 'hide_foo').click
|
256
|
-
expect { element.wait_while_present(timeout: 1) }.to_not raise_exception
|
257
|
-
end
|
258
|
-
|
259
|
-
it "waits until the selector no longer matches" do
|
260
|
-
Watir.default_timeout = 1
|
261
|
-
element = browser.link(name: 'add_select').wait_until(&:exists?)
|
262
|
-
begin
|
263
|
-
start_time = ::Time.now
|
264
|
-
browser.link(id: 'change_select').click
|
265
|
-
expect { element.wait_while_present }.not_to raise_error
|
266
|
-
ensure
|
267
|
-
Watir.default_timeout = 30
|
268
|
-
end
|
269
|
-
end
|
270
|
-
end
|
271
|
-
|
272
|
-
describe "#wait_until" do
|
273
|
-
it "returns element for additional actions" do
|
274
|
-
element = browser.div(id: 'foo')
|
275
|
-
expect(element.wait_until(&:exist?)).to eq element
|
276
|
-
end
|
277
|
-
|
278
|
-
it "accepts self in block" do
|
279
|
-
element = browser.div(id: 'bar')
|
280
|
-
browser.a(id: 'show_bar').click
|
281
|
-
expect { element.wait_until { |el| el.text == 'bar' } }.to_not raise_exception
|
282
|
-
end
|
283
|
-
|
284
|
-
it "accepts any values in block" do
|
285
|
-
element = browser.div(id: 'bar')
|
286
|
-
expect { element.wait_until { true } }.to_not raise_exception
|
287
|
-
end
|
288
|
-
|
289
|
-
it "accepts just a timeout parameter" do
|
290
|
-
element = browser.div(id: 'bar')
|
291
|
-
expect { element.wait_until(timeout: 0) { true } }.to_not raise_exception
|
292
|
-
end
|
293
|
-
|
294
|
-
it "accepts just a message parameter" do
|
295
|
-
element = browser.div(id: 'bar')
|
296
|
-
expect { element.wait_until(message: 'no') { true } }.to_not raise_exception
|
297
|
-
end
|
298
|
-
|
299
|
-
it "accepts just an interval parameter" do
|
300
|
-
element = browser.div(id: 'bar')
|
301
|
-
expect { element.wait_until(interval: 0.1) { true } }.to_not raise_exception
|
302
|
-
end
|
303
|
-
end
|
304
|
-
|
305
|
-
describe "#wait_while" do
|
306
|
-
it "returns element for additional actions" do
|
307
|
-
element = browser.div(id: 'foo')
|
308
|
-
browser.a(id: 'hide_foo').click
|
309
|
-
expect(element.wait_while(&:present?)).to eq element
|
310
|
-
end
|
311
|
-
|
312
|
-
not_compliant_on :safari do
|
313
|
-
it "accepts self in block" do
|
314
|
-
element = browser.div(id: 'foo')
|
315
|
-
browser.a(id: 'hide_foo').click
|
316
|
-
expect { element.wait_while { |el| el.text == 'foo' } }.to_not raise_exception
|
317
|
-
end
|
318
|
-
end
|
319
|
-
|
320
|
-
it "accepts any values in block" do
|
321
|
-
element = browser.div(id: 'foo')
|
322
|
-
expect { element.wait_while { false } }.to_not raise_exception
|
323
|
-
end
|
324
|
-
|
325
|
-
it "accepts just a timeout parameter" do
|
326
|
-
element = browser.div(id: 'foo')
|
327
|
-
expect { element.wait_while(timeout: 0) { false } }.to_not raise_exception
|
328
|
-
end
|
329
|
-
|
330
|
-
it "accepts just a message parameter" do
|
331
|
-
element = browser.div(id: 'foo')
|
332
|
-
expect { element.wait_while(message: 'no') { false } }.to_not raise_exception
|
333
|
-
end
|
334
|
-
|
335
|
-
it "accepts just an interval parameter" do
|
336
|
-
element = browser.div(id: 'foo')
|
337
|
-
expect { element.wait_while(interval: 0.1) { false } }.to_not raise_exception
|
338
|
-
end
|
339
|
-
end
|
340
|
-
end
|
341
|
-
|
342
|
-
describe Watir do
|
343
|
-
describe "#default_timeout" do
|
344
|
-
before do
|
345
|
-
Watir.default_timeout = 1
|
346
|
-
|
347
|
-
browser.goto WatirSpec.url_for("wait.html")
|
348
|
-
end
|
349
|
-
|
350
|
-
after do
|
351
|
-
# Reset the default timeout
|
352
|
-
Watir.default_timeout = 30
|
353
|
-
end
|
354
|
-
|
355
|
-
context "when no timeout is specified" do
|
356
|
-
it "is used by Wait#until" do
|
357
|
-
expect {
|
358
|
-
Watir::Wait.until { false }
|
359
|
-
}.to raise_error(Watir::Wait::TimeoutError)
|
360
|
-
end
|
361
|
-
|
362
|
-
it "is used by Wait#while" do
|
363
|
-
expect {
|
364
|
-
Watir::Wait.while { true }
|
365
|
-
}.to raise_error(Watir::Wait::TimeoutError)
|
366
|
-
end
|
367
|
-
|
368
|
-
it "is used by Element#wait_until_present" do
|
369
|
-
expect {
|
370
|
-
browser.div(id: 'bar').wait_until_present
|
371
|
-
}.to raise_error(Watir::Wait::TimeoutError)
|
372
|
-
end
|
373
|
-
|
374
|
-
it "is used by Element#wait_while_present" do
|
375
|
-
expect {
|
376
|
-
browser.div(id: 'foo').wait_while_present
|
377
|
-
}.to raise_error(Watir::Wait::TimeoutError)
|
378
|
-
end
|
379
|
-
end
|
380
|
-
end
|
381
|
-
end
|
1
|
+
require "watirspec_helper"
|
2
|
+
|
3
|
+
describe Watir::Wait do
|
4
|
+
describe "#until" do
|
5
|
+
it "waits until the block returns true" do
|
6
|
+
Watir::Wait.until(timeout: 0.5) { @result = true }
|
7
|
+
expect(@result).to be true
|
8
|
+
end
|
9
|
+
|
10
|
+
it "executes block if timeout is zero" do
|
11
|
+
Watir::Wait.until(timeout: 0) { @result = true }
|
12
|
+
expect(@result).to be true
|
13
|
+
end
|
14
|
+
|
15
|
+
it "times out" do
|
16
|
+
expect { Watir::Wait.until(timeout: 0.5) { false } }.to raise_error(Watir::Wait::TimeoutError)
|
17
|
+
end
|
18
|
+
|
19
|
+
it "times out with a custom message" do
|
20
|
+
expect {
|
21
|
+
Watir::Wait.until(timeout: 0.5, message: "oops") { false }
|
22
|
+
}.to raise_error(Watir::Wait::TimeoutError, "timed out after 0.5 seconds, oops")
|
23
|
+
end
|
24
|
+
|
25
|
+
it "uses provided interval" do
|
26
|
+
begin
|
27
|
+
Watir::Wait.until(timeout: 0.4, interval: 0.2) do
|
28
|
+
@result = @result.nil? ? 1 : @result + 1
|
29
|
+
false
|
30
|
+
end
|
31
|
+
rescue Watir::Wait::TimeoutError
|
32
|
+
end
|
33
|
+
expect(@result).to eq 2
|
34
|
+
end
|
35
|
+
|
36
|
+
it "uses timer for waiting" do
|
37
|
+
timer = Watir::Wait.timer
|
38
|
+
expect(timer).to receive(:wait).with(0.5).and_call_original
|
39
|
+
Watir::Wait.until(timeout: 0.5) { true }
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
describe "#while" do
|
44
|
+
it "waits while the block returns true" do
|
45
|
+
expect(Watir::Wait.while(timeout: 0.5) { false }).to be_nil
|
46
|
+
end
|
47
|
+
|
48
|
+
it "executes block if timeout is zero" do
|
49
|
+
expect(Watir::Wait.while(timeout: 0) { false }).to be_nil
|
50
|
+
end
|
51
|
+
|
52
|
+
it "times out" do
|
53
|
+
expect { Watir::Wait.while(timeout: 0.5) { true } }.to raise_error(Watir::Wait::TimeoutError)
|
54
|
+
end
|
55
|
+
|
56
|
+
it "times out with a custom message" do
|
57
|
+
expect {
|
58
|
+
Watir::Wait.while(timeout: 0.5, message: "oops") { true }
|
59
|
+
}.to raise_error(Watir::Wait::TimeoutError, "timed out after 0.5 seconds, oops")
|
60
|
+
end
|
61
|
+
|
62
|
+
it "uses provided interval" do
|
63
|
+
begin
|
64
|
+
Watir::Wait.while(timeout: 0.4, interval: 0.2) do
|
65
|
+
@result = @result.nil? ? 1 : @result + 1
|
66
|
+
true
|
67
|
+
end
|
68
|
+
rescue Watir::Wait::TimeoutError
|
69
|
+
end
|
70
|
+
expect(@result).to eq 2
|
71
|
+
end
|
72
|
+
|
73
|
+
it "uses timer for waiting" do
|
74
|
+
timer = Watir::Wait.timer
|
75
|
+
expect(timer).to receive(:wait).with(0.5).and_call_original
|
76
|
+
Watir::Wait.while(timeout: 0.5) { false }
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
describe "#timer" do
|
81
|
+
it "returns default timer" do
|
82
|
+
expect(Watir::Wait.timer).to be_a(Watir::Wait::Timer)
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
describe "#timer=" do
|
87
|
+
after { Watir::Wait.timer = nil }
|
88
|
+
|
89
|
+
it "changes default timer" do
|
90
|
+
timer = Class.new
|
91
|
+
Watir::Wait.timer = timer
|
92
|
+
expect(Watir::Wait.timer).to eq(timer)
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
describe Watir::Element do
|
98
|
+
before do
|
99
|
+
browser.goto WatirSpec.url_for("wait.html")
|
100
|
+
end
|
101
|
+
|
102
|
+
# TODO: This is deprecated; remove in future version
|
103
|
+
not_compliant_on :relaxed_locate do
|
104
|
+
describe "#when_present" do
|
105
|
+
it "invokes subsequent method calls when the element becomes present" do
|
106
|
+
browser.a(id: 'show_bar').click
|
107
|
+
|
108
|
+
bar = browser.div(id: 'bar')
|
109
|
+
bar.when_present(2).click
|
110
|
+
expect(bar.text).to eq "changed"
|
111
|
+
end
|
112
|
+
|
113
|
+
it "times out when given a block" do
|
114
|
+
expect { browser.div(id: 'bar').when_present(1) {} }.to raise_error(Watir::Wait::TimeoutError)
|
115
|
+
end
|
116
|
+
|
117
|
+
it "times out when not given a block" do
|
118
|
+
message = /^timed out after 1 seconds, waiting for (\{:id=>"bar", :tag_name=>"div"\}|\{:tag_name=>"div", :id=>"bar"\}) to become present$/
|
119
|
+
expect { browser.div(id: 'bar').when_present(1).click }.to raise_error(Watir::Wait::TimeoutError, message)
|
120
|
+
end
|
121
|
+
|
122
|
+
it "responds to Element methods" do
|
123
|
+
decorator = browser.div.when_present
|
124
|
+
|
125
|
+
expect(decorator).to respond_to(:exist?)
|
126
|
+
expect(decorator).to respond_to(:present?)
|
127
|
+
expect(decorator).to respond_to(:click)
|
128
|
+
end
|
129
|
+
|
130
|
+
it "delegates present? to element" do
|
131
|
+
Object.class_eval do
|
132
|
+
def present?
|
133
|
+
false
|
134
|
+
end
|
135
|
+
end
|
136
|
+
element = browser.a(id: "show_bar").when_present(1)
|
137
|
+
expect(element).to be_present
|
138
|
+
end
|
139
|
+
|
140
|
+
it "processes before calling present?" do
|
141
|
+
browser.a(id: 'show_bar').click
|
142
|
+
expect(browser.div(id: 'bar').when_present.present?).to be true
|
143
|
+
end
|
144
|
+
end
|
145
|
+
end
|
146
|
+
|
147
|
+
compliant_on :relaxed_locate do
|
148
|
+
it "clicking automatically waits until the element appears" do
|
149
|
+
browser.a(id: 'show_bar').click
|
150
|
+
expect { browser.div(id: 'bar').click }.to_not raise_exception
|
151
|
+
expect(browser.div(id: 'bar').text).to eq 'changed'
|
152
|
+
end
|
153
|
+
|
154
|
+
it "raises exception if the element doesn't appear" do
|
155
|
+
expect { browser.div(id: 'bar').click }.to raise_unknown_object_exception
|
156
|
+
end
|
157
|
+
|
158
|
+
it "raises exception if the element doesn't become enabled" do
|
159
|
+
expect { browser.button(id: 'btn').click }.to raise_object_disabled_exception
|
160
|
+
end
|
161
|
+
|
162
|
+
end
|
163
|
+
|
164
|
+
not_compliant_on :relaxed_locate do
|
165
|
+
describe "#wait_until &:enabled?" do
|
166
|
+
it "invokes subsequent method calls when the element becomes enabled" do
|
167
|
+
browser.a(id: 'enable_btn').click
|
168
|
+
|
169
|
+
btn = browser.button(id: 'btn')
|
170
|
+
btn.wait_until(timeout: 2, &:enabled?).click
|
171
|
+
Watir::Wait.while { btn.enabled? }
|
172
|
+
expect(btn.disabled?).to be true
|
173
|
+
end
|
174
|
+
|
175
|
+
it "times out" do
|
176
|
+
error = Watir::Wait::TimeoutError
|
177
|
+
inspected = '#<Watir::Button: located: false; {:id=>"btn", :tag_name=>"button"}>'
|
178
|
+
message = "timed out after 1 seconds, waiting for true condition on #{inspected}"
|
179
|
+
element = browser.button(id: 'btn')
|
180
|
+
expect { element.wait_until(timeout: 1, &:enabled?).click }.to raise_error(error, message)
|
181
|
+
end
|
182
|
+
|
183
|
+
it "responds to Element methods" do
|
184
|
+
element = browser.button.wait_until { true }
|
185
|
+
|
186
|
+
expect(element).to respond_to(:exist?)
|
187
|
+
expect(element).to respond_to(:present?)
|
188
|
+
expect(element).to respond_to(:click)
|
189
|
+
end
|
190
|
+
|
191
|
+
it "can be chained with #wait_until &:present?" do
|
192
|
+
browser.a(id: 'show_and_enable_btn').click
|
193
|
+
browser.button(id: 'btn2').wait_until(&:present?).wait_until(&:enabled?).click
|
194
|
+
|
195
|
+
expect(browser.button(id: 'btn2')).to exist
|
196
|
+
expect(browser.button(id: 'btn2')).to be_enabled
|
197
|
+
end
|
198
|
+
end
|
199
|
+
end
|
200
|
+
|
201
|
+
describe "#wait_until_present" do
|
202
|
+
it "waits until the element appears" do
|
203
|
+
browser.a(id: 'show_bar').click
|
204
|
+
expect { browser.div(id: 'bar').wait_until_present(timeout: 5) }.to_not raise_exception
|
205
|
+
end
|
206
|
+
|
207
|
+
it "times out if the element doesn't appear" do
|
208
|
+
inspected = '#<Watir::Div: located: false; {:id=>"bar", :tag_name=>"div"}>'
|
209
|
+
error = Watir::Wait::TimeoutError
|
210
|
+
message = "timed out after 1 seconds, waiting for true condition on #{inspected}"
|
211
|
+
|
212
|
+
expect { browser.div(id: 'bar').wait_until_present(timeout: 1) }.to raise_error(error, message)
|
213
|
+
end
|
214
|
+
|
215
|
+
it "uses provided interval" do
|
216
|
+
element = browser.div(id: 'bar')
|
217
|
+
expect(element).to receive(:present?).twice
|
218
|
+
|
219
|
+
begin
|
220
|
+
element.wait_until_present(timeout: 0.4, interval: 0.2)
|
221
|
+
rescue Watir::Wait::TimeoutError
|
222
|
+
end
|
223
|
+
end
|
224
|
+
end
|
225
|
+
|
226
|
+
describe "#wait_while_present" do
|
227
|
+
it "waits until the element disappears" do
|
228
|
+
browser.a(id: 'hide_foo').click
|
229
|
+
expect { browser.div(id: 'foo').wait_while_present(timeout: 2) }.to_not raise_exception
|
230
|
+
end
|
231
|
+
|
232
|
+
it "times out if the element doesn't disappear" do
|
233
|
+
error = Watir::Wait::TimeoutError
|
234
|
+
inspected = '#<Watir::Div: located: false; {:id=>"foo", :tag_name=>"div"}>'
|
235
|
+
message = "timed out after 1 seconds, waiting for false condition on #{inspected}"
|
236
|
+
expect { browser.div(id: 'foo').wait_while_present(timeout: 1) }.to raise_error(error, message)
|
237
|
+
end
|
238
|
+
|
239
|
+
it "uses provided interval" do
|
240
|
+
element = browser.div(id: 'foo')
|
241
|
+
expect(element).to receive(:present?).twice
|
242
|
+
|
243
|
+
begin
|
244
|
+
element.wait_until_present(timeout: 0.4, interval: 0.2)
|
245
|
+
rescue Watir::Wait::TimeoutError
|
246
|
+
end
|
247
|
+
end
|
248
|
+
|
249
|
+
it "does not error when element goes stale" do
|
250
|
+
element = browser.div(id: 'foo')
|
251
|
+
|
252
|
+
allow(element).to receive(:stale?).and_return(false, true)
|
253
|
+
allow(element.wd).to receive(:displayed?).and_raise(Selenium::WebDriver::Error::StaleElementReferenceError)
|
254
|
+
|
255
|
+
browser.a(id: 'hide_foo').click
|
256
|
+
expect { element.wait_while_present(timeout: 1) }.to_not raise_exception
|
257
|
+
end
|
258
|
+
|
259
|
+
it "waits until the selector no longer matches" do
|
260
|
+
Watir.default_timeout = 1
|
261
|
+
element = browser.link(name: 'add_select').wait_until(&:exists?)
|
262
|
+
begin
|
263
|
+
start_time = ::Time.now
|
264
|
+
browser.link(id: 'change_select').click
|
265
|
+
expect { element.wait_while_present }.not_to raise_error
|
266
|
+
ensure
|
267
|
+
Watir.default_timeout = 30
|
268
|
+
end
|
269
|
+
end
|
270
|
+
end
|
271
|
+
|
272
|
+
describe "#wait_until" do
|
273
|
+
it "returns element for additional actions" do
|
274
|
+
element = browser.div(id: 'foo')
|
275
|
+
expect(element.wait_until(&:exist?)).to eq element
|
276
|
+
end
|
277
|
+
|
278
|
+
it "accepts self in block" do
|
279
|
+
element = browser.div(id: 'bar')
|
280
|
+
browser.a(id: 'show_bar').click
|
281
|
+
expect { element.wait_until { |el| el.text == 'bar' } }.to_not raise_exception
|
282
|
+
end
|
283
|
+
|
284
|
+
it "accepts any values in block" do
|
285
|
+
element = browser.div(id: 'bar')
|
286
|
+
expect { element.wait_until { true } }.to_not raise_exception
|
287
|
+
end
|
288
|
+
|
289
|
+
it "accepts just a timeout parameter" do
|
290
|
+
element = browser.div(id: 'bar')
|
291
|
+
expect { element.wait_until(timeout: 0) { true } }.to_not raise_exception
|
292
|
+
end
|
293
|
+
|
294
|
+
it "accepts just a message parameter" do
|
295
|
+
element = browser.div(id: 'bar')
|
296
|
+
expect { element.wait_until(message: 'no') { true } }.to_not raise_exception
|
297
|
+
end
|
298
|
+
|
299
|
+
it "accepts just an interval parameter" do
|
300
|
+
element = browser.div(id: 'bar')
|
301
|
+
expect { element.wait_until(interval: 0.1) { true } }.to_not raise_exception
|
302
|
+
end
|
303
|
+
end
|
304
|
+
|
305
|
+
describe "#wait_while" do
|
306
|
+
it "returns element for additional actions" do
|
307
|
+
element = browser.div(id: 'foo')
|
308
|
+
browser.a(id: 'hide_foo').click
|
309
|
+
expect(element.wait_while(&:present?)).to eq element
|
310
|
+
end
|
311
|
+
|
312
|
+
not_compliant_on :safari do
|
313
|
+
it "accepts self in block" do
|
314
|
+
element = browser.div(id: 'foo')
|
315
|
+
browser.a(id: 'hide_foo').click
|
316
|
+
expect { element.wait_while { |el| el.text == 'foo' } }.to_not raise_exception
|
317
|
+
end
|
318
|
+
end
|
319
|
+
|
320
|
+
it "accepts any values in block" do
|
321
|
+
element = browser.div(id: 'foo')
|
322
|
+
expect { element.wait_while { false } }.to_not raise_exception
|
323
|
+
end
|
324
|
+
|
325
|
+
it "accepts just a timeout parameter" do
|
326
|
+
element = browser.div(id: 'foo')
|
327
|
+
expect { element.wait_while(timeout: 0) { false } }.to_not raise_exception
|
328
|
+
end
|
329
|
+
|
330
|
+
it "accepts just a message parameter" do
|
331
|
+
element = browser.div(id: 'foo')
|
332
|
+
expect { element.wait_while(message: 'no') { false } }.to_not raise_exception
|
333
|
+
end
|
334
|
+
|
335
|
+
it "accepts just an interval parameter" do
|
336
|
+
element = browser.div(id: 'foo')
|
337
|
+
expect { element.wait_while(interval: 0.1) { false } }.to_not raise_exception
|
338
|
+
end
|
339
|
+
end
|
340
|
+
end
|
341
|
+
|
342
|
+
describe Watir do
|
343
|
+
describe "#default_timeout" do
|
344
|
+
before do
|
345
|
+
Watir.default_timeout = 1
|
346
|
+
|
347
|
+
browser.goto WatirSpec.url_for("wait.html")
|
348
|
+
end
|
349
|
+
|
350
|
+
after do
|
351
|
+
# Reset the default timeout
|
352
|
+
Watir.default_timeout = 30
|
353
|
+
end
|
354
|
+
|
355
|
+
context "when no timeout is specified" do
|
356
|
+
it "is used by Wait#until" do
|
357
|
+
expect {
|
358
|
+
Watir::Wait.until { false }
|
359
|
+
}.to raise_error(Watir::Wait::TimeoutError)
|
360
|
+
end
|
361
|
+
|
362
|
+
it "is used by Wait#while" do
|
363
|
+
expect {
|
364
|
+
Watir::Wait.while { true }
|
365
|
+
}.to raise_error(Watir::Wait::TimeoutError)
|
366
|
+
end
|
367
|
+
|
368
|
+
it "is used by Element#wait_until_present" do
|
369
|
+
expect {
|
370
|
+
browser.div(id: 'bar').wait_until_present
|
371
|
+
}.to raise_error(Watir::Wait::TimeoutError)
|
372
|
+
end
|
373
|
+
|
374
|
+
it "is used by Element#wait_while_present" do
|
375
|
+
expect {
|
376
|
+
browser.div(id: 'foo').wait_while_present
|
377
|
+
}.to raise_error(Watir::Wait::TimeoutError)
|
378
|
+
end
|
379
|
+
end
|
380
|
+
end
|
381
|
+
end
|