watir 6.10.0 → 6.10.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (280) hide show
  1. checksums.yaml +4 -4
  2. data/.document +5 -5
  3. data/.github/ISSUE_TEMPLATE.md +16 -16
  4. data/.gitignore +21 -21
  5. data/.travis.yml +72 -72
  6. data/CHANGES.md +6 -0
  7. data/Gemfile +16 -16
  8. data/LICENSE +23 -23
  9. data/README.md +106 -106
  10. data/Rakefile +153 -153
  11. data/appveyor.yml +13 -13
  12. data/lib/watir-webdriver.rb +2 -2
  13. data/lib/watir.rb +158 -158
  14. data/lib/watir/adjacent.rb +126 -126
  15. data/lib/watir/after_hooks.rb +132 -132
  16. data/lib/watir/alert.rb +120 -120
  17. data/lib/watir/aliases.rb +6 -6
  18. data/lib/watir/attribute_helper.rb +96 -96
  19. data/lib/watir/browser.rb +349 -349
  20. data/lib/watir/capabilities.rb +123 -123
  21. data/lib/watir/cell_container.rb +25 -25
  22. data/lib/watir/container.rb +51 -51
  23. data/lib/watir/cookies.rb +134 -134
  24. data/lib/watir/element_collection.rb +138 -138
  25. data/lib/watir/elements/area.rb +12 -12
  26. data/lib/watir/elements/button.rb +37 -37
  27. data/lib/watir/elements/cell.rb +17 -17
  28. data/lib/watir/elements/checkbox.rb +56 -56
  29. data/lib/watir/elements/dlist.rb +12 -12
  30. data/lib/watir/elements/element.rb +6 -5
  31. data/lib/watir/elements/file_field.rb +41 -41
  32. data/lib/watir/elements/font.rb +25 -25
  33. data/lib/watir/elements/form.rb +16 -16
  34. data/lib/watir/elements/hidden.rb +25 -25
  35. data/lib/watir/elements/html_elements.rb +2035 -2035
  36. data/lib/watir/elements/iframe.rb +166 -166
  37. data/lib/watir/elements/image.rb +21 -21
  38. data/lib/watir/elements/input.rb +15 -15
  39. data/lib/watir/elements/link.rb +18 -18
  40. data/lib/watir/elements/list.rb +49 -49
  41. data/lib/watir/elements/option.rb +72 -72
  42. data/lib/watir/elements/radio.rb +60 -60
  43. data/lib/watir/elements/row.rb +17 -17
  44. data/lib/watir/elements/select.rb +250 -250
  45. data/lib/watir/elements/svg_elements.rb +613 -613
  46. data/lib/watir/elements/table.rb +76 -76
  47. data/lib/watir/elements/table_cell.rb +31 -31
  48. data/lib/watir/elements/table_row.rb +32 -32
  49. data/lib/watir/elements/table_section.rb +15 -15
  50. data/lib/watir/elements/text_area.rb +5 -5
  51. data/lib/watir/elements/text_field.rb +39 -39
  52. data/lib/watir/exception.rb +16 -16
  53. data/lib/watir/extensions/nokogiri.rb +14 -14
  54. data/lib/watir/generator.rb +3 -3
  55. data/lib/watir/generator/base.rb +11 -11
  56. data/lib/watir/generator/base/generator.rb +115 -115
  57. data/lib/watir/generator/base/idl_sorter.rb +47 -47
  58. data/lib/watir/generator/base/spec_extractor.rb +138 -138
  59. data/lib/watir/generator/base/util.rb +21 -21
  60. data/lib/watir/generator/base/visitor.rb +162 -162
  61. data/lib/watir/generator/html.rb +15 -15
  62. data/lib/watir/generator/html/generator.rb +36 -36
  63. data/lib/watir/generator/html/spec_extractor.rb +50 -50
  64. data/lib/watir/generator/html/visitor.rb +21 -21
  65. data/lib/watir/generator/svg.rb +7 -7
  66. data/lib/watir/generator/svg/generator.rb +38 -38
  67. data/lib/watir/generator/svg/spec_extractor.rb +53 -53
  68. data/lib/watir/generator/svg/visitor.rb +21 -21
  69. data/lib/watir/has_window.rb +68 -68
  70. data/lib/watir/js_execution.rb +143 -143
  71. data/lib/watir/js_snippets.rb +16 -16
  72. data/lib/watir/js_snippets/backgroundColor.js +7 -7
  73. data/lib/watir/js_snippets/fireEvent.js +31 -31
  74. data/lib/watir/js_snippets/focus.js +3 -3
  75. data/lib/watir/js_snippets/getInnerHtml.js +19 -19
  76. data/lib/watir/js_snippets/getInnerText.js +19 -19
  77. data/lib/watir/js_snippets/getOuterHtml.js +20 -20
  78. data/lib/watir/js_snippets/getTextContent.js +19 -19
  79. data/lib/watir/js_snippets/isImageLoaded.js +3 -3
  80. data/lib/watir/js_snippets/selectOptionsLabel.js +10 -10
  81. data/lib/watir/js_snippets/selectOptionsText.js +10 -10
  82. data/lib/watir/js_snippets/selectOptionsValue.js +10 -10
  83. data/lib/watir/js_snippets/selectText.js +64 -64
  84. data/lib/watir/js_snippets/selectedOptions.js +11 -11
  85. data/lib/watir/js_snippets/setValue.js +3 -3
  86. data/lib/watir/legacy_wait.rb +126 -126
  87. data/lib/watir/locators.rb +60 -60
  88. data/lib/watir/locators/button/locator.rb +31 -31
  89. data/lib/watir/locators/button/selector_builder.rb +30 -30
  90. data/lib/watir/locators/button/selector_builder/xpath.rb +29 -29
  91. data/lib/watir/locators/button/validator.rb +15 -15
  92. data/lib/watir/locators/cell/locator.rb +15 -15
  93. data/lib/watir/locators/cell/selector_builder.rb +24 -24
  94. data/lib/watir/locators/element/locator.rb +1 -0
  95. data/lib/watir/locators/element/selector_builder.rb +150 -150
  96. data/lib/watir/locators/element/selector_builder/xpath.rb +119 -119
  97. data/lib/watir/locators/element/validator.rb +18 -18
  98. data/lib/watir/locators/row/locator.rb +15 -15
  99. data/lib/watir/locators/row/selector_builder.rb +29 -29
  100. data/lib/watir/locators/text_area/locator.rb +13 -13
  101. data/lib/watir/locators/text_area/selector_builder.rb +22 -22
  102. data/lib/watir/locators/text_field/locator.rb +30 -30
  103. data/lib/watir/locators/text_field/selector_builder.rb +31 -31
  104. data/lib/watir/locators/text_field/selector_builder/xpath.rb +17 -17
  105. data/lib/watir/locators/text_field/validator.rb +12 -12
  106. data/lib/watir/logger.rb +109 -109
  107. data/lib/watir/radio_set.rb +231 -231
  108. data/lib/watir/row_container.rb +36 -36
  109. data/lib/watir/screenshot.rb +50 -50
  110. data/lib/watir/user_editable.rb +56 -56
  111. data/lib/watir/wait.rb +200 -200
  112. data/lib/watir/wait/timer.rb +52 -52
  113. data/lib/watir/window.rb +257 -257
  114. data/lib/watir/xpath_support.rb +20 -20
  115. data/lib/watirspec.rb +86 -86
  116. data/lib/watirspec/guards.rb +60 -60
  117. data/lib/watirspec/implementation.rb +51 -51
  118. data/lib/watirspec/rake_tasks.rb +115 -115
  119. data/lib/watirspec/remote_server.rb +38 -38
  120. data/lib/watirspec/runner.rb +53 -53
  121. data/lib/watirspec/server.rb +99 -99
  122. data/lib/watirspec/server/app.rb +76 -76
  123. data/spec/browser_spec.rb +278 -278
  124. data/spec/click_spec.rb +19 -19
  125. data/spec/container_spec.rb +34 -34
  126. data/spec/element_locator_spec.rb +517 -517
  127. data/spec/element_spec.rb +158 -158
  128. data/spec/implementation_spec.rb +24 -24
  129. data/spec/input_spec.rb +14 -14
  130. data/spec/locator_spec_helper.rb +55 -55
  131. data/spec/logger_spec.rb +46 -46
  132. data/spec/spec_helper.rb +22 -22
  133. data/spec/special_chars_spec.rb +13 -13
  134. data/spec/watirspec/adjacent_spec.rb +227 -227
  135. data/spec/watirspec/after_hooks_spec.rb +182 -182
  136. data/spec/watirspec/alert_spec.rb +108 -108
  137. data/spec/watirspec/attributes_spec.rb +16 -16
  138. data/spec/watirspec/browser_spec.rb +281 -281
  139. data/spec/watirspec/cookies_spec.rb +154 -154
  140. data/spec/watirspec/drag_and_drop_spec.rb +49 -49
  141. data/spec/watirspec/element_hidden_spec.rb +75 -75
  142. data/spec/watirspec/elements/area_spec.rb +72 -72
  143. data/spec/watirspec/elements/areas_spec.rb +42 -42
  144. data/spec/watirspec/elements/button_spec.rb +277 -277
  145. data/spec/watirspec/elements/buttons_spec.rb +55 -55
  146. data/spec/watirspec/elements/checkbox_spec.rb +275 -275
  147. data/spec/watirspec/elements/checkboxes_spec.rb +44 -44
  148. data/spec/watirspec/elements/collections_spec.rb +52 -52
  149. data/spec/watirspec/elements/dd_spec.rb +124 -124
  150. data/spec/watirspec/elements/dds_spec.rb +42 -42
  151. data/spec/watirspec/elements/del_spec.rb +126 -126
  152. data/spec/watirspec/elements/dels_spec.rb +40 -40
  153. data/spec/watirspec/elements/div_spec.rb +245 -245
  154. data/spec/watirspec/elements/divs_spec.rb +42 -42
  155. data/spec/watirspec/elements/dl_spec.rb +142 -142
  156. data/spec/watirspec/elements/dls_spec.rb +43 -43
  157. data/spec/watirspec/elements/dt_spec.rb +122 -122
  158. data/spec/watirspec/elements/dts_spec.rb +42 -42
  159. data/spec/watirspec/elements/element_spec.rb +483 -483
  160. data/spec/watirspec/elements/elements_spec.rb +47 -47
  161. data/spec/watirspec/elements/em_spec.rb +96 -96
  162. data/spec/watirspec/elements/ems_spec.rb +43 -43
  163. data/spec/watirspec/elements/filefield_spec.rb +170 -170
  164. data/spec/watirspec/elements/filefields_spec.rb +43 -43
  165. data/spec/watirspec/elements/font_spec.rb +29 -29
  166. data/spec/watirspec/elements/form_spec.rb +66 -66
  167. data/spec/watirspec/elements/forms_spec.rb +46 -46
  168. data/spec/watirspec/elements/frame_spec.rb +123 -123
  169. data/spec/watirspec/elements/frames_spec.rb +41 -41
  170. data/spec/watirspec/elements/hidden_spec.rb +104 -104
  171. data/spec/watirspec/elements/hiddens_spec.rb +43 -43
  172. data/spec/watirspec/elements/hn_spec.rb +92 -92
  173. data/spec/watirspec/elements/hns_spec.rb +38 -38
  174. data/spec/watirspec/elements/iframe_spec.rb +10 -0
  175. data/spec/watirspec/elements/iframes_spec.rb +47 -47
  176. data/spec/watirspec/elements/image_spec.rb +158 -158
  177. data/spec/watirspec/elements/images_spec.rb +40 -40
  178. data/spec/watirspec/elements/ins_spec.rb +127 -127
  179. data/spec/watirspec/elements/inses_spec.rb +40 -40
  180. data/spec/watirspec/elements/label_spec.rb +75 -75
  181. data/spec/watirspec/elements/labels_spec.rb +40 -40
  182. data/spec/watirspec/elements/li_spec.rb +111 -111
  183. data/spec/watirspec/elements/link_spec.rb +171 -171
  184. data/spec/watirspec/elements/links_spec.rb +44 -44
  185. data/spec/watirspec/elements/lis_spec.rb +42 -42
  186. data/spec/watirspec/elements/list_spec.rb +32 -32
  187. data/spec/watirspec/elements/map_spec.rb +75 -75
  188. data/spec/watirspec/elements/maps_spec.rb +41 -41
  189. data/spec/watirspec/elements/meta_spec.rb +23 -23
  190. data/spec/watirspec/elements/metas_spec.rb +40 -40
  191. data/spec/watirspec/elements/ol_spec.rb +87 -87
  192. data/spec/watirspec/elements/ols_spec.rb +40 -40
  193. data/spec/watirspec/elements/option_spec.rb +121 -121
  194. data/spec/watirspec/elements/p_spec.rb +111 -111
  195. data/spec/watirspec/elements/pre_spec.rb +111 -111
  196. data/spec/watirspec/elements/pres_spec.rb +40 -40
  197. data/spec/watirspec/elements/ps_spec.rb +40 -40
  198. data/spec/watirspec/elements/radio_spec.rb +273 -273
  199. data/spec/watirspec/elements/radios_spec.rb +43 -43
  200. data/spec/watirspec/elements/select_list_spec.rb +553 -553
  201. data/spec/watirspec/elements/select_lists_spec.rb +46 -46
  202. data/spec/watirspec/elements/span_spec.rb +128 -128
  203. data/spec/watirspec/elements/spans_spec.rb +40 -40
  204. data/spec/watirspec/elements/strong_spec.rb +88 -88
  205. data/spec/watirspec/elements/strongs_spec.rb +43 -43
  206. data/spec/watirspec/elements/table_nesting_spec.rb +51 -51
  207. data/spec/watirspec/elements/table_spec.rb +156 -156
  208. data/spec/watirspec/elements/tables_spec.rb +42 -42
  209. data/spec/watirspec/elements/tbody_spec.rb +93 -93
  210. data/spec/watirspec/elements/tbodys_spec.rb +62 -62
  211. data/spec/watirspec/elements/td_spec.rb +93 -93
  212. data/spec/watirspec/elements/tds_spec.rb +53 -53
  213. data/spec/watirspec/elements/text_field_spec.rb +360 -360
  214. data/spec/watirspec/elements/text_fields_spec.rb +44 -44
  215. data/spec/watirspec/elements/textarea_spec.rb +26 -26
  216. data/spec/watirspec/elements/textareas_spec.rb +24 -24
  217. data/spec/watirspec/elements/tfoot_spec.rb +86 -86
  218. data/spec/watirspec/elements/tfoots_spec.rb +68 -68
  219. data/spec/watirspec/elements/thead_spec.rb +86 -86
  220. data/spec/watirspec/elements/theads_spec.rb +68 -68
  221. data/spec/watirspec/elements/tr_spec.rb +78 -78
  222. data/spec/watirspec/elements/trs_spec.rb +61 -61
  223. data/spec/watirspec/elements/ul_spec.rb +76 -76
  224. data/spec/watirspec/elements/uls_spec.rb +39 -39
  225. data/spec/watirspec/html/alerts.html +12 -12
  226. data/spec/watirspec/html/aria_attributes.html +9 -9
  227. data/spec/watirspec/html/class_locator.html +8 -8
  228. data/spec/watirspec/html/clicks.html +19 -19
  229. data/spec/watirspec/html/closeable.html +12 -12
  230. data/spec/watirspec/html/collections.html +14 -14
  231. data/spec/watirspec/html/css/jquery-ui-1.8.17.custom.css +286 -286
  232. data/spec/watirspec/html/data_attributes.html +9 -9
  233. data/spec/watirspec/html/definition_lists.html +47 -47
  234. data/spec/watirspec/html/drag_and_drop.html +106 -106
  235. data/spec/watirspec/html/font.html +10 -10
  236. data/spec/watirspec/html/forms_with_input_elements.html +174 -174
  237. data/spec/watirspec/html/frame_1.html +22 -22
  238. data/spec/watirspec/html/frame_2.html +15 -15
  239. data/spec/watirspec/html/frames.html +10 -10
  240. data/spec/watirspec/html/hover.html +11 -11
  241. data/spec/watirspec/html/iframe_1.html +22 -22
  242. data/spec/watirspec/html/iframes.html +12 -12
  243. data/spec/watirspec/html/images.html +27 -27
  244. data/spec/watirspec/html/inner_outer.html +4 -4
  245. data/spec/watirspec/html/javascript/angular.min.js +331 -331
  246. data/spec/watirspec/html/javascript/helpers.js +16 -16
  247. data/spec/watirspec/html/javascript/jquery-1.7.1.min.js +3 -3
  248. data/spec/watirspec/html/javascript/jquery-ui-1.8.17.custom.min.js +67 -67
  249. data/spec/watirspec/html/keylogger.html +14 -14
  250. data/spec/watirspec/html/modal_dialog.html +9 -9
  251. data/spec/watirspec/html/multiple_ids.html +14 -14
  252. data/spec/watirspec/html/nested_elements.html +33 -33
  253. data/spec/watirspec/html/nested_frame_2.html +9 -9
  254. data/spec/watirspec/html/nested_frame_3.html +14 -14
  255. data/spec/watirspec/html/nested_frames.html +10 -10
  256. data/spec/watirspec/html/nested_iframe_2.html +12 -12
  257. data/spec/watirspec/html/nested_iframes.html +13 -13
  258. data/spec/watirspec/html/nested_tables.html +202 -202
  259. data/spec/watirspec/html/non_control_elements.html +140 -140
  260. data/spec/watirspec/html/removed_element.html +24 -24
  261. data/spec/watirspec/html/right_click.html +10 -10
  262. data/spec/watirspec/html/special_chars.html +11 -11
  263. data/spec/watirspec/html/tables.html +120 -120
  264. data/spec/watirspec/html/timeout_window_location.html +19 -19
  265. data/spec/watirspec/html/uneven_table.html +20 -20
  266. data/spec/watirspec/html/wait.html +84 -84
  267. data/spec/watirspec/html/window_switching.html +11 -11
  268. data/spec/watirspec/radio_set_spec.rb +336 -336
  269. data/spec/watirspec/relaxed_locate_spec.rb +99 -99
  270. data/spec/watirspec/screenshot_spec.rb +29 -29
  271. data/spec/watirspec/support/raise_exception_matchers.rb +36 -36
  272. data/spec/watirspec/wait_spec.rb +381 -381
  273. data/spec/watirspec/window_switching_spec.rb +415 -415
  274. data/spec/watirspec_helper.rb +161 -161
  275. data/support/appveyor.cmd +9 -9
  276. data/support/doctest_helper.rb +101 -101
  277. data/support/travis.sh +11 -11
  278. data/support/version_differ.rb +59 -59
  279. data/watir.gemspec +1 -1
  280. metadata +4 -170
@@ -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
@@ -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