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,43 +1,43 @@
1
- require "watirspec_helper"
2
-
3
- describe "Radios" do
4
-
5
- before :each do
6
- browser.goto(WatirSpec.url_for("forms_with_input_elements.html"))
7
- end
8
-
9
- describe "with selectors" do
10
- it "returns the matching elements" do
11
- expect(browser.radios(value: "yes").to_a).to eq [browser.radio(value: "yes")]
12
- end
13
- end
14
-
15
- describe "#length" do
16
- it "returns the number of radios" do
17
- expect(browser.radios.length).to eq 7
18
- end
19
- end
20
-
21
- describe "#[]" do
22
- it "returns the radio button at the given index" do
23
- expect(browser.radios[0].id).to eq "new_user_newsletter_yes"
24
- end
25
- end
26
-
27
- describe "#each" do
28
- it "iterates through radio buttons correctly" do
29
- count = 0
30
-
31
- browser.radios.each_with_index do |r, index|
32
- expect(r.name).to eq browser.radio(index: index).name
33
- expect(r.id).to eq browser.radio(index: index).id
34
- expect(r.value).to eq browser.radio(index: index).value
35
-
36
- count += 1
37
- end
38
-
39
- expect(count).to be > 0
40
- end
41
- end
42
-
43
- end
1
+ require "watirspec_helper"
2
+
3
+ describe "Radios" do
4
+
5
+ before :each do
6
+ browser.goto(WatirSpec.url_for("forms_with_input_elements.html"))
7
+ end
8
+
9
+ describe "with selectors" do
10
+ it "returns the matching elements" do
11
+ expect(browser.radios(value: "yes").to_a).to eq [browser.radio(value: "yes")]
12
+ end
13
+ end
14
+
15
+ describe "#length" do
16
+ it "returns the number of radios" do
17
+ expect(browser.radios.length).to eq 7
18
+ end
19
+ end
20
+
21
+ describe "#[]" do
22
+ it "returns the radio button at the given index" do
23
+ expect(browser.radios[0].id).to eq "new_user_newsletter_yes"
24
+ end
25
+ end
26
+
27
+ describe "#each" do
28
+ it "iterates through radio buttons correctly" do
29
+ count = 0
30
+
31
+ browser.radios.each_with_index do |r, index|
32
+ expect(r.name).to eq browser.radio(index: index).name
33
+ expect(r.id).to eq browser.radio(index: index).id
34
+ expect(r.value).to eq browser.radio(index: index).value
35
+
36
+ count += 1
37
+ end
38
+
39
+ expect(count).to be > 0
40
+ end
41
+ end
42
+
43
+ end
@@ -1,553 +1,553 @@
1
- require "watirspec_helper"
2
-
3
- describe "SelectList" do
4
-
5
- before :each do
6
- browser.goto(WatirSpec.url_for("forms_with_input_elements.html"))
7
- end
8
-
9
- # Exists method
10
- describe "#exists?" do
11
- it "returns true if the select list exists" do
12
- expect(browser.select_list(id: 'new_user_country')).to exist
13
- expect(browser.select_list(id: /new_user_country/)).to exist
14
- expect(browser.select_list(name: 'new_user_country')).to exist
15
- expect(browser.select_list(name: /new_user_country/)).to exist
16
- expect(browser.select_list(class: 'country')).to exist
17
- expect(browser.select_list(class: /country/)).to exist
18
- expect(browser.select_list(index: 0)).to exist
19
- expect(browser.select_list(xpath: "//select[@id='new_user_country']")).to exist
20
- end
21
-
22
- it "returns the first select if given no args" do
23
- expect(browser.select_list).to exist
24
- end
25
-
26
- it "returns false if the select list doesn't exist" do
27
- expect(browser.select_list(id: 'no_such_id')).to_not exist
28
- expect(browser.select_list(id: /no_such_id/)).to_not exist
29
- expect(browser.select_list(name: 'no_such_name')).to_not exist
30
- expect(browser.select_list(name: /no_such_name/)).to_not exist
31
- expect(browser.select_list(value: 'no_such_value')).to_not exist
32
- expect(browser.select_list(value: /no_such_value/)).to_not exist
33
- expect(browser.select_list(text: 'no_such_text')).to_not exist
34
- msg = /:text locator with RegExp values to find elements based on only visible text is deprecated. Use :visible_text instead./
35
- expect { expect(browser.select_list(text: /no_such_text/)).to_not exist }.to output(msg).to_stdout_from_any_process
36
- expect(browser.select_list(class: 'no_such_class')).to_not exist
37
- expect(browser.select_list(class: /no_such_class/)).to_not exist
38
- expect(browser.select_list(index: 1337)).to_not exist
39
- expect(browser.select_list(xpath: "//select[@id='no_such_id']")).to_not exist
40
- end
41
-
42
- it "raises TypeError when 'what' argument is invalid" do
43
- expect { browser.select_list(id: 3.14).exists? }.to raise_error(TypeError)
44
- end
45
- end
46
-
47
- # Attribute methods
48
- describe "#class_name" do
49
- it "returns the class name of the select list" do
50
- expect(browser.select_list(name: 'new_user_country').class_name).to eq 'country'
51
- end
52
-
53
- it "raises UnknownObjectException if the select list doesn't exist" do
54
- expect { browser.select_list(name: 'no_such_name').class_name }.to raise_unknown_object_exception
55
- end
56
- end
57
-
58
- describe "#id" do
59
- it "returns the id of the element" do
60
- expect(browser.select_list(index: 0).id).to eq "new_user_country"
61
- end
62
-
63
- it "raises UnknownObjectException if the select list doesn't exist" do
64
- expect { browser.select_list(index: 1337).id }.to raise_unknown_object_exception
65
- end
66
- end
67
-
68
- describe "#name" do
69
- it "returns the name of the element" do
70
- expect(browser.select_list(index: 0).name).to eq "new_user_country"
71
- end
72
-
73
- it "raises UnknownObjectException if the select list doesn't exist" do
74
- expect { browser.select_list(index: 1337).name }.to raise_unknown_object_exception
75
- end
76
- end
77
-
78
- describe "#multiple?" do
79
- it "knows whether the select list allows multiple selections" do
80
- expect(browser.select_list(index: 0)).to_not be_multiple
81
- expect(browser.select_list(index: 1)).to be_multiple
82
- end
83
-
84
- it "raises UnknownObjectException if the select list doesn't exist" do
85
- expect { browser.select_list(index: 1337).multiple? }.to raise_unknown_object_exception
86
- end
87
- end
88
-
89
- describe "#value" do
90
- not_compliant_on :safari do
91
- it "returns the value of the selected option" do
92
- expect(browser.select_list(index: 0).value).to eq "2"
93
- browser.select_list(index: 0).select(/Sweden/)
94
- expect(browser.select_list(index: 0).value).to eq "3"
95
- end
96
- end
97
-
98
- it "raises UnknownObjectException if the select list doesn't exist" do
99
- expect { browser.select_list(index: 1337).value }.to raise_unknown_object_exception
100
- end
101
- end
102
-
103
- describe "#text" do
104
- not_compliant_on :safari do
105
- it "returns the text of the selected option" do
106
- expect(browser.select_list(index: 0).text).to eq "Norway"
107
- browser.select_list(index: 0).select(/Sweden/)
108
- expect(browser.select_list(index: 0).text).to eq "Sweden"
109
- end
110
-
111
- it "raises UnknownObjectException if the select list doesn't exist" do
112
- expect { browser.select_list(index: 1337).text }.to raise_unknown_object_exception
113
- end
114
- end
115
- end
116
-
117
- describe "#respond_to?" do
118
- it "returns true for all attribute methods" do
119
- expect(browser.select_list(index: 0)).to respond_to(:class_name)
120
- expect(browser.select_list(index: 0)).to respond_to(:id)
121
- expect(browser.select_list(index: 0)).to respond_to(:name)
122
- expect(browser.select_list(index: 0)).to respond_to(:value)
123
- end
124
- end
125
-
126
- # Access methods
127
- describe "#enabled?" do
128
- it "returns true if the select list is enabled" do
129
- expect(browser.select_list(name: 'new_user_country')).to be_enabled
130
- end
131
-
132
- it "returns false if the select list is disabled" do
133
- expect(browser.select_list(name: 'new_user_role')).to_not be_enabled
134
- end
135
-
136
- it "raises UnknownObjectException if the select_list doesn't exist" do
137
- expect { browser.select_list(name: 'no_such_name').enabled? }.to raise_unknown_object_exception
138
- end
139
- end
140
-
141
- describe "#disabled?" do
142
- it "returns true if the select list is disabled" do
143
- expect(browser.select_list(index: 2)).to be_disabled
144
- end
145
-
146
- it "returns false if the select list is enabled" do
147
- expect(browser.select_list(index: 0)).to_not be_disabled
148
- end
149
-
150
- it "should raise UnknownObjectException when the select list does not exist" do
151
- expect { browser.select_list(index: 1337).disabled? }.to raise_unknown_object_exception
152
- end
153
- end
154
-
155
- # Other
156
- describe "#option" do
157
- it "returns an instance of Option" do
158
- option = browser.select_list(name: "new_user_country").option(text: "Denmark")
159
- expect(option).to be_instance_of(Watir::Option)
160
- expect(option.value).to eq "1"
161
- end
162
- end
163
-
164
- describe "#options" do
165
- it "returns all the options" do
166
- options = browser.select_list(name: "new_user_country").options
167
- expect(options.map(&:text)).to eq ["Denmark", "Norway", "Sweden", "United Kingdom", "USA", "Germany"]
168
- end
169
- end
170
-
171
- describe "#selected_options" do
172
- it "should raise UnknownObjectException if the select list doesn't exist" do
173
- expect { browser.select_list(name: 'no_such_name').selected_options }.to raise_unknown_object_exception
174
- end
175
-
176
- it "gets the currently selected item(s)" do
177
- expect(browser.select_list(name: "new_user_country").selected_options.map(&:text)).to eq ["Norway"]
178
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["EN", "NO"]
179
- end
180
- end
181
-
182
- describe "#clear" do
183
- not_compliant_on :safari do
184
- it "clears the selection when possible" do
185
- browser.select_list(name: "new_user_languages").clear
186
- expect(browser.select_list(name: "new_user_languages").selected_options).to be_empty
187
- end
188
- end
189
-
190
- it "does not clear selections if the select list does not allow multiple selections" do
191
- expect {
192
- browser.select_list(name: "new_user_country").clear
193
- }.to raise_error(/you can only clear multi-selects/)
194
-
195
- expect(browser.select_list(name: "new_user_country").selected_options.map(&:text)).to eq ["Norway"]
196
- end
197
-
198
- it "raises UnknownObjectException if the select list doesn't exist" do
199
- expect { browser.select_list(name: 'no_such_name').clear }.to raise_unknown_object_exception
200
- end
201
-
202
- not_compliant_on :safari do
203
- it "fires onchange event" do
204
- browser.select_list(name: "new_user_languages").clear
205
- expect(messages.size).to eq 2
206
- end
207
-
208
- it "doesn't fire onchange event for already cleared option" do
209
- browser.select_list(name: "new_user_languages").option.clear
210
- expect(messages.size).to eq 0
211
- end
212
- end
213
- end
214
-
215
- describe "#include?" do
216
- it "returns true if the given option exists by text" do
217
- expect(browser.select_list(name: 'new_user_country')).to include('Denmark')
218
- end
219
-
220
- it "returns true if the given option exists by label" do
221
- expect(browser.select_list(name: 'new_user_country')).to include('Germany')
222
- end
223
-
224
- it "returns false if the given option doesn't exist" do
225
- expect(browser.select_list(name: 'new_user_country')).to_not include('Ireland')
226
- end
227
- end
228
-
229
- not_compliant_on :safari do
230
- describe "#selected?" do
231
- it "returns true if the given option is selected by text" do
232
- browser.select_list(name: 'new_user_country').select('Denmark')
233
- expect(browser.select_list(name: 'new_user_country')).to be_selected('Denmark')
234
- end
235
-
236
- it "returns false if the given option is not selected by text" do
237
- expect(browser.select_list(name: 'new_user_country')).to_not be_selected('Sweden')
238
- end
239
-
240
- it "returns true if the given option is selected by label" do
241
- browser.select_list(name: 'new_user_country').select('Germany')
242
- expect(browser.select_list(name: 'new_user_country')).to be_selected('Germany')
243
- end
244
-
245
- it "returns false if the given option is not selected by label" do
246
- expect(browser.select_list(name: 'new_user_country')).to_not be_selected('Germany')
247
- end
248
-
249
- it "raises UnknownObjectException if the option doesn't exist" do
250
- expect { browser.select_list(name: 'new_user_country').selected?('missing_option') }.to raise_unknown_object_exception
251
- end
252
- end
253
- end
254
-
255
- describe "#select" do
256
- context "when finding by value" do
257
- it "selects an option with a String" do
258
- browser.select_list(name: "new_user_languages").clear
259
- browser.select_list(name: "new_user_languages").select("2")
260
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq %w[EN]
261
- end
262
-
263
- it "selects an option with a Regexp" do
264
- browser.select_list(name: "new_user_languages").clear
265
- msg = /Selecting Multiple Options with #select is deprecated\. Use #select_all instead/
266
- expect { browser.select_list(name: "new_user_languages").select(/1|3/) }.to output(msg).to_stdout_from_any_process
267
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq %w[Danish NO]
268
- end
269
- end
270
-
271
- context "when finding by text" do
272
- it "selects an option with a String" do
273
- browser.select_list(name: "new_user_country").select("Denmark")
274
- expect(browser.select_list(name: "new_user_country").selected_options.map(&:text)).to eq ["Denmark"]
275
- end
276
-
277
- it "selects an option with a Regexp" do
278
- browser.select_list(name: "new_user_country").select(/Denmark/)
279
- expect(browser.select_list(name: "new_user_country").selected_options.map(&:text)).to eq ["Denmark"]
280
- end
281
- end
282
-
283
- context "when finding by label" do
284
- it "selects an option with a String" do
285
- browser.select_list(name: "new_user_languages").clear
286
- browser.select_list(name: "new_user_languages").select("NO")
287
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["NO"]
288
- end
289
-
290
- it "selects an option with a Regexp" do
291
- browser.select_list(name: "new_user_languages").clear
292
- browser.select_list(name: "new_user_languages").select(/^N/)
293
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["NO"]
294
- end
295
- end
296
-
297
- it "selects multiple options successiveley" do
298
- browser.select_list(name: "new_user_languages").clear
299
- browser.select_list(name: "new_user_languages").select("Danish")
300
- browser.select_list(name: "new_user_languages").select("Swedish")
301
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "Swedish"]
302
- end
303
-
304
- it "selects each item in an Array" do
305
- browser.select_list(name: "new_user_languages").clear
306
- browser.select_list(name: "new_user_languages").select(["Danish", "Swedish"])
307
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "Swedish"]
308
- end
309
-
310
- it "selects each item in a parameter list" do
311
- browser.select_list(name: "new_user_languages").clear
312
- browser.select_list(name: "new_user_languages").select("Danish", "Swedish")
313
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "Swedish"]
314
- end
315
-
316
- bug "https://bugzilla.mozilla.org/show_bug.cgi?id=1255957", :firefox do
317
- it "selects empty options" do
318
- browser.select_list(id: "delete_user_username").select("")
319
- expect(browser.select_list(id: "delete_user_username").selected_options.map(&:text)).to eq [""]
320
- end
321
- end
322
-
323
- it "returns the value selected" do
324
- expect(browser.select_list(name: "new_user_languages").select("Danish")).to eq "Danish"
325
- end
326
-
327
- not_compliant_on :safari do
328
- it "fires onchange event when selecting an item" do
329
- browser.select_list(id: "new_user_languages").select("Danish")
330
- expect(messages).to eq ['changed language']
331
- end
332
-
333
- it "doesn't fire onchange event when selecting an already selected item" do
334
- browser.select_list(id: "new_user_languages").clear # removes the two pre-selected options
335
- browser.select_list(id: "new_user_languages").select("English")
336
- expect(messages.size).to eq 3
337
-
338
- browser.select_list(id: "new_user_languages").select("English")
339
- expect(messages.size).to eq 3
340
- end
341
-
342
- it "returns an empty string when selecting an option that disappears when selected" do
343
- expect(browser.select_list(id: 'obsolete').select('sweden')).to eq ''
344
- end
345
- end
346
-
347
- it "selects options with a single-quoted value" do
348
- browser.select_list(id: 'single-quote').select("'foo'")
349
- end
350
-
351
- compliant_on :relaxed_locate do
352
- it 'waits to select an option' do
353
- browser.goto WatirSpec.url_for("wait.html")
354
- browser.a(id: 'add_select').click
355
- select_list = browser.select_list(id: 'languages')
356
- Watir.default_timeout = 2
357
- begin
358
- start_time = ::Time.now
359
- expect { select_list.select('No') }.to raise_error Watir::Exception::NoValueFoundException
360
- expect(::Time.now - start_time).to be > 2
361
- ensure
362
- Watir.default_timeout = 30
363
- end
364
- end
365
- end
366
-
367
- it "raises NoValueFoundException if the option doesn't exist" do
368
- expect { browser.select_list(name: "new_user_country").select("missing_option") }.to raise_no_value_found_exception
369
- expect { browser.select_list(name: "new_user_country").select(/missing_option/) }.to raise_no_value_found_exception
370
- end
371
-
372
- it "raises ObjectDisabledException if the option is disabled" do
373
- expect { browser.select_list(name: "new_user_languages").select("Russian") }.to raise_object_disabled_exception
374
- end
375
-
376
- it "raises a TypeError if argument is not a String, Regexp or Numeric" do
377
- expect { browser.select_list(id: "new_user_languages").select({}) }.to raise_error(TypeError)
378
- end
379
- end
380
-
381
- describe "#select!" do
382
- context "when finding by value" do
383
- it "selects an option with a String" do
384
- browser.select_list(name: "new_user_languages").clear
385
- browser.select_list(name: "new_user_languages").select!("2")
386
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq %w[EN]
387
- end
388
-
389
- it "selects an option with a Regex" do
390
- browser.select_list(name: "new_user_languages").clear
391
- browser.select_list(name: "new_user_languages").select!(/2/)
392
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq %w[EN]
393
- end
394
- end
395
-
396
- context "when finding by text" do
397
- it "selects an option with a String" do
398
- browser.select_list(name: "new_user_country").select!("Denmark")
399
- expect(browser.select_list(name: "new_user_country").selected_options.map(&:text)).to eq ["Denmark"]
400
- end
401
-
402
- it "selects an option with a Regexp" do
403
- browser.select_list(name: "new_user_country").select!(/Denmark/)
404
- expect(browser.select_list(name: "new_user_country").selected_options.map(&:text)).to eq ["Denmark"]
405
- end
406
- end
407
-
408
- context "when finding by label" do
409
- it "selects an option with a String" do
410
- browser.select_list(name: "new_user_languages").clear
411
- browser.select_list(name: "new_user_languages").select!("NO")
412
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["NO"]
413
- end
414
-
415
- it "selects an option with a Regexp" do
416
- browser.select_list(name: "new_user_languages").clear
417
- browser.select_list(name: "new_user_languages").select!(/NO/)
418
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["NO"]
419
- end
420
- end
421
-
422
- it "selects multiple items successively" do
423
- browser.select_list(name: "new_user_languages").clear
424
- browser.select_list(name: "new_user_languages").select!("Danish")
425
- browser.select_list(name: "new_user_languages").select!("Swedish")
426
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "Swedish"]
427
- end
428
-
429
- it "selects each item in an Array" do
430
- browser.select_list(name: "new_user_languages").clear
431
- browser.select_list(name: "new_user_languages").select!(["Danish", "Swedish"])
432
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "Swedish"]
433
- end
434
-
435
- it "selects each item in a parameter list" do
436
- browser.select_list(name: "new_user_languages").clear
437
- browser.select_list(name: "new_user_languages").select!("Danish", "Swedish")
438
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "Swedish"]
439
- end
440
-
441
- bug "https://bugzilla.mozilla.org/show_bug.cgi?id=1255957", :firefox do
442
- it "selects empty options" do
443
- browser.select_list(id: "delete_user_username").select!("")
444
- expect(browser.select_list(id: "delete_user_username").selected_options.map(&:text)).to eq [""]
445
- end
446
- end
447
-
448
- it "returns the value selected" do
449
- browser.select_list(name: "new_user_languages").clear
450
- expect(browser.select_list(name: "new_user_languages").select!("Danish")).to eq "Danish"
451
- end
452
-
453
- it "selects options with a single-quoted value" do
454
- browser.select_list(id: 'single-quote').select!("'foo'")
455
- end
456
-
457
- it "selects exact matches when using String" do
458
- browser.select_list(name: "new_user_languages").clear
459
- browser.select_list(name: "new_user_languages").select!("Latin")
460
- selected_options = browser.select_list(name: "new_user_languages").selected_options.map(&:text)
461
- expect(selected_options).not_to include("Azeri - Latin")
462
- expect(selected_options).to include("Latin")
463
- end
464
-
465
- it "raises NoValueFoundException if the option doesn't exist" do
466
- expect { browser.select_list(id: "new_user_country").select!("missing_option") }.to raise_no_value_found_exception
467
- expect { browser.select_list(id: "new_user_country").select!(/missing_option/) }.to raise_no_value_found_exception
468
- end
469
-
470
- it "raises ObjectDisabledException if the option is disabled" do
471
- browser.select_list(id: "new_user_languages").clear
472
- expect { browser.select_list(id: "new_user_languages").select!("Russian") }.to raise_object_disabled_exception
473
- end
474
-
475
- it "raises a TypeError if argument is not a String, Regexp or Numeric" do
476
- browser.select_list(id: "new_user_languages").clear
477
- expect { browser.select_list(id: "new_user_languages").select!({}) }.to raise_error(TypeError)
478
- end
479
- end
480
-
481
- describe "#select_all" do
482
- it "selects multiple options based on text" do
483
- browser.select_list(name: "new_user_languages").clear
484
- browser.select_list(name: "new_user_languages").select_all(/ish/)
485
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "EN", "Swedish"]
486
- end
487
-
488
- it "selects multiple options based on labels" do
489
- browser.select_list(name: "new_user_languages").clear
490
- browser.select_list(name: "new_user_languages").select_all(/NO|EN/)
491
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["EN", "NO"]
492
- end
493
-
494
- it "selects all options in an Array" do
495
- browser.select_list(name: "new_user_languages").clear
496
- browser.select_list(name: "new_user_languages").select_all([/ish/, /Latin/])
497
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "EN", "Swedish", "Azeri - Latin", "Latin"]
498
- end
499
-
500
- it "selects all options in a parameter list" do
501
- browser.select_list(name: "new_user_languages").clear
502
- browser.select_list(name: "new_user_languages").select_all(/ish/, /Latin/)
503
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "EN", "Swedish", "Azeri - Latin", "Latin"]
504
- end
505
-
506
- it "returns the first matching value if there are multiple matches" do
507
- expect(browser.select_list(name: "new_user_languages").select_all(/ish/)).to eq "Danish"
508
- end
509
- end
510
-
511
- describe "#select_all!" do
512
- it "selects multiple options based on value" do
513
- browser.select_list(name: "new_user_languages").clear
514
- browser.select_list(name: "new_user_languages").select_all!(/\d+/)
515
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "EN", "NO", "Russian"]
516
- end
517
-
518
- it "selects multiple options based on text" do
519
- browser.select_list(name: "new_user_languages").clear
520
- browser.select_list(name: "new_user_languages").select_all!(/ish/)
521
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "EN", "Swedish"]
522
- end
523
-
524
- it "selects multiple options based on labels" do
525
- browser.select_list(name: "new_user_languages").clear
526
- browser.select_list(name: "new_user_languages").select_all!(/NO|EN/)
527
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["EN", "NO"]
528
- end
529
-
530
- it "selects all options in an Array" do
531
- browser.select_list(name: "new_user_languages").clear
532
- browser.select_list(name: "new_user_languages").select_all!([/ish/, /Latin/])
533
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "EN", "Swedish", "Azeri - Latin", "Latin"]
534
- end
535
-
536
- it "selects all options in a parameter list" do
537
- browser.select_list(name: "new_user_languages").clear
538
- browser.select_list(name: "new_user_languages").select_all!(/ish/, /Latin/)
539
- expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "EN", "Swedish", "Azeri - Latin", "Latin"]
540
- end
541
-
542
- it "returns the first matching value if there are multiple matches" do
543
- expect(browser.select_list(name: "new_user_languages").select_all!(/ish/)).to eq "Danish"
544
- end
545
- end
546
-
547
- # deprecate?
548
- not_compliant_on :safari do
549
- describe "#select_value" do
550
- end
551
- end
552
-
553
- end
1
+ require "watirspec_helper"
2
+
3
+ describe "SelectList" do
4
+
5
+ before :each do
6
+ browser.goto(WatirSpec.url_for("forms_with_input_elements.html"))
7
+ end
8
+
9
+ # Exists method
10
+ describe "#exists?" do
11
+ it "returns true if the select list exists" do
12
+ expect(browser.select_list(id: 'new_user_country')).to exist
13
+ expect(browser.select_list(id: /new_user_country/)).to exist
14
+ expect(browser.select_list(name: 'new_user_country')).to exist
15
+ expect(browser.select_list(name: /new_user_country/)).to exist
16
+ expect(browser.select_list(class: 'country')).to exist
17
+ expect(browser.select_list(class: /country/)).to exist
18
+ expect(browser.select_list(index: 0)).to exist
19
+ expect(browser.select_list(xpath: "//select[@id='new_user_country']")).to exist
20
+ end
21
+
22
+ it "returns the first select if given no args" do
23
+ expect(browser.select_list).to exist
24
+ end
25
+
26
+ it "returns false if the select list doesn't exist" do
27
+ expect(browser.select_list(id: 'no_such_id')).to_not exist
28
+ expect(browser.select_list(id: /no_such_id/)).to_not exist
29
+ expect(browser.select_list(name: 'no_such_name')).to_not exist
30
+ expect(browser.select_list(name: /no_such_name/)).to_not exist
31
+ expect(browser.select_list(value: 'no_such_value')).to_not exist
32
+ expect(browser.select_list(value: /no_such_value/)).to_not exist
33
+ expect(browser.select_list(text: 'no_such_text')).to_not exist
34
+ msg = /:text locator with RegExp values to find elements based on only visible text is deprecated. Use :visible_text instead./
35
+ expect { expect(browser.select_list(text: /no_such_text/)).to_not exist }.to output(msg).to_stdout_from_any_process
36
+ expect(browser.select_list(class: 'no_such_class')).to_not exist
37
+ expect(browser.select_list(class: /no_such_class/)).to_not exist
38
+ expect(browser.select_list(index: 1337)).to_not exist
39
+ expect(browser.select_list(xpath: "//select[@id='no_such_id']")).to_not exist
40
+ end
41
+
42
+ it "raises TypeError when 'what' argument is invalid" do
43
+ expect { browser.select_list(id: 3.14).exists? }.to raise_error(TypeError)
44
+ end
45
+ end
46
+
47
+ # Attribute methods
48
+ describe "#class_name" do
49
+ it "returns the class name of the select list" do
50
+ expect(browser.select_list(name: 'new_user_country').class_name).to eq 'country'
51
+ end
52
+
53
+ it "raises UnknownObjectException if the select list doesn't exist" do
54
+ expect { browser.select_list(name: 'no_such_name').class_name }.to raise_unknown_object_exception
55
+ end
56
+ end
57
+
58
+ describe "#id" do
59
+ it "returns the id of the element" do
60
+ expect(browser.select_list(index: 0).id).to eq "new_user_country"
61
+ end
62
+
63
+ it "raises UnknownObjectException if the select list doesn't exist" do
64
+ expect { browser.select_list(index: 1337).id }.to raise_unknown_object_exception
65
+ end
66
+ end
67
+
68
+ describe "#name" do
69
+ it "returns the name of the element" do
70
+ expect(browser.select_list(index: 0).name).to eq "new_user_country"
71
+ end
72
+
73
+ it "raises UnknownObjectException if the select list doesn't exist" do
74
+ expect { browser.select_list(index: 1337).name }.to raise_unknown_object_exception
75
+ end
76
+ end
77
+
78
+ describe "#multiple?" do
79
+ it "knows whether the select list allows multiple selections" do
80
+ expect(browser.select_list(index: 0)).to_not be_multiple
81
+ expect(browser.select_list(index: 1)).to be_multiple
82
+ end
83
+
84
+ it "raises UnknownObjectException if the select list doesn't exist" do
85
+ expect { browser.select_list(index: 1337).multiple? }.to raise_unknown_object_exception
86
+ end
87
+ end
88
+
89
+ describe "#value" do
90
+ not_compliant_on :safari do
91
+ it "returns the value of the selected option" do
92
+ expect(browser.select_list(index: 0).value).to eq "2"
93
+ browser.select_list(index: 0).select(/Sweden/)
94
+ expect(browser.select_list(index: 0).value).to eq "3"
95
+ end
96
+ end
97
+
98
+ it "raises UnknownObjectException if the select list doesn't exist" do
99
+ expect { browser.select_list(index: 1337).value }.to raise_unknown_object_exception
100
+ end
101
+ end
102
+
103
+ describe "#text" do
104
+ not_compliant_on :safari do
105
+ it "returns the text of the selected option" do
106
+ expect(browser.select_list(index: 0).text).to eq "Norway"
107
+ browser.select_list(index: 0).select(/Sweden/)
108
+ expect(browser.select_list(index: 0).text).to eq "Sweden"
109
+ end
110
+
111
+ it "raises UnknownObjectException if the select list doesn't exist" do
112
+ expect { browser.select_list(index: 1337).text }.to raise_unknown_object_exception
113
+ end
114
+ end
115
+ end
116
+
117
+ describe "#respond_to?" do
118
+ it "returns true for all attribute methods" do
119
+ expect(browser.select_list(index: 0)).to respond_to(:class_name)
120
+ expect(browser.select_list(index: 0)).to respond_to(:id)
121
+ expect(browser.select_list(index: 0)).to respond_to(:name)
122
+ expect(browser.select_list(index: 0)).to respond_to(:value)
123
+ end
124
+ end
125
+
126
+ # Access methods
127
+ describe "#enabled?" do
128
+ it "returns true if the select list is enabled" do
129
+ expect(browser.select_list(name: 'new_user_country')).to be_enabled
130
+ end
131
+
132
+ it "returns false if the select list is disabled" do
133
+ expect(browser.select_list(name: 'new_user_role')).to_not be_enabled
134
+ end
135
+
136
+ it "raises UnknownObjectException if the select_list doesn't exist" do
137
+ expect { browser.select_list(name: 'no_such_name').enabled? }.to raise_unknown_object_exception
138
+ end
139
+ end
140
+
141
+ describe "#disabled?" do
142
+ it "returns true if the select list is disabled" do
143
+ expect(browser.select_list(index: 2)).to be_disabled
144
+ end
145
+
146
+ it "returns false if the select list is enabled" do
147
+ expect(browser.select_list(index: 0)).to_not be_disabled
148
+ end
149
+
150
+ it "should raise UnknownObjectException when the select list does not exist" do
151
+ expect { browser.select_list(index: 1337).disabled? }.to raise_unknown_object_exception
152
+ end
153
+ end
154
+
155
+ # Other
156
+ describe "#option" do
157
+ it "returns an instance of Option" do
158
+ option = browser.select_list(name: "new_user_country").option(text: "Denmark")
159
+ expect(option).to be_instance_of(Watir::Option)
160
+ expect(option.value).to eq "1"
161
+ end
162
+ end
163
+
164
+ describe "#options" do
165
+ it "returns all the options" do
166
+ options = browser.select_list(name: "new_user_country").options
167
+ expect(options.map(&:text)).to eq ["Denmark", "Norway", "Sweden", "United Kingdom", "USA", "Germany"]
168
+ end
169
+ end
170
+
171
+ describe "#selected_options" do
172
+ it "should raise UnknownObjectException if the select list doesn't exist" do
173
+ expect { browser.select_list(name: 'no_such_name').selected_options }.to raise_unknown_object_exception
174
+ end
175
+
176
+ it "gets the currently selected item(s)" do
177
+ expect(browser.select_list(name: "new_user_country").selected_options.map(&:text)).to eq ["Norway"]
178
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["EN", "NO"]
179
+ end
180
+ end
181
+
182
+ describe "#clear" do
183
+ not_compliant_on :safari do
184
+ it "clears the selection when possible" do
185
+ browser.select_list(name: "new_user_languages").clear
186
+ expect(browser.select_list(name: "new_user_languages").selected_options).to be_empty
187
+ end
188
+ end
189
+
190
+ it "does not clear selections if the select list does not allow multiple selections" do
191
+ expect {
192
+ browser.select_list(name: "new_user_country").clear
193
+ }.to raise_error(/you can only clear multi-selects/)
194
+
195
+ expect(browser.select_list(name: "new_user_country").selected_options.map(&:text)).to eq ["Norway"]
196
+ end
197
+
198
+ it "raises UnknownObjectException if the select list doesn't exist" do
199
+ expect { browser.select_list(name: 'no_such_name').clear }.to raise_unknown_object_exception
200
+ end
201
+
202
+ not_compliant_on :safari do
203
+ it "fires onchange event" do
204
+ browser.select_list(name: "new_user_languages").clear
205
+ expect(messages.size).to eq 2
206
+ end
207
+
208
+ it "doesn't fire onchange event for already cleared option" do
209
+ browser.select_list(name: "new_user_languages").option.clear
210
+ expect(messages.size).to eq 0
211
+ end
212
+ end
213
+ end
214
+
215
+ describe "#include?" do
216
+ it "returns true if the given option exists by text" do
217
+ expect(browser.select_list(name: 'new_user_country')).to include('Denmark')
218
+ end
219
+
220
+ it "returns true if the given option exists by label" do
221
+ expect(browser.select_list(name: 'new_user_country')).to include('Germany')
222
+ end
223
+
224
+ it "returns false if the given option doesn't exist" do
225
+ expect(browser.select_list(name: 'new_user_country')).to_not include('Ireland')
226
+ end
227
+ end
228
+
229
+ not_compliant_on :safari do
230
+ describe "#selected?" do
231
+ it "returns true if the given option is selected by text" do
232
+ browser.select_list(name: 'new_user_country').select('Denmark')
233
+ expect(browser.select_list(name: 'new_user_country')).to be_selected('Denmark')
234
+ end
235
+
236
+ it "returns false if the given option is not selected by text" do
237
+ expect(browser.select_list(name: 'new_user_country')).to_not be_selected('Sweden')
238
+ end
239
+
240
+ it "returns true if the given option is selected by label" do
241
+ browser.select_list(name: 'new_user_country').select('Germany')
242
+ expect(browser.select_list(name: 'new_user_country')).to be_selected('Germany')
243
+ end
244
+
245
+ it "returns false if the given option is not selected by label" do
246
+ expect(browser.select_list(name: 'new_user_country')).to_not be_selected('Germany')
247
+ end
248
+
249
+ it "raises UnknownObjectException if the option doesn't exist" do
250
+ expect { browser.select_list(name: 'new_user_country').selected?('missing_option') }.to raise_unknown_object_exception
251
+ end
252
+ end
253
+ end
254
+
255
+ describe "#select" do
256
+ context "when finding by value" do
257
+ it "selects an option with a String" do
258
+ browser.select_list(name: "new_user_languages").clear
259
+ browser.select_list(name: "new_user_languages").select("2")
260
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq %w[EN]
261
+ end
262
+
263
+ it "selects an option with a Regexp" do
264
+ browser.select_list(name: "new_user_languages").clear
265
+ msg = /Selecting Multiple Options with #select is deprecated\. Use #select_all instead/
266
+ expect { browser.select_list(name: "new_user_languages").select(/1|3/) }.to output(msg).to_stdout_from_any_process
267
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq %w[Danish NO]
268
+ end
269
+ end
270
+
271
+ context "when finding by text" do
272
+ it "selects an option with a String" do
273
+ browser.select_list(name: "new_user_country").select("Denmark")
274
+ expect(browser.select_list(name: "new_user_country").selected_options.map(&:text)).to eq ["Denmark"]
275
+ end
276
+
277
+ it "selects an option with a Regexp" do
278
+ browser.select_list(name: "new_user_country").select(/Denmark/)
279
+ expect(browser.select_list(name: "new_user_country").selected_options.map(&:text)).to eq ["Denmark"]
280
+ end
281
+ end
282
+
283
+ context "when finding by label" do
284
+ it "selects an option with a String" do
285
+ browser.select_list(name: "new_user_languages").clear
286
+ browser.select_list(name: "new_user_languages").select("NO")
287
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["NO"]
288
+ end
289
+
290
+ it "selects an option with a Regexp" do
291
+ browser.select_list(name: "new_user_languages").clear
292
+ browser.select_list(name: "new_user_languages").select(/^N/)
293
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["NO"]
294
+ end
295
+ end
296
+
297
+ it "selects multiple options successiveley" do
298
+ browser.select_list(name: "new_user_languages").clear
299
+ browser.select_list(name: "new_user_languages").select("Danish")
300
+ browser.select_list(name: "new_user_languages").select("Swedish")
301
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "Swedish"]
302
+ end
303
+
304
+ it "selects each item in an Array" do
305
+ browser.select_list(name: "new_user_languages").clear
306
+ browser.select_list(name: "new_user_languages").select(["Danish", "Swedish"])
307
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "Swedish"]
308
+ end
309
+
310
+ it "selects each item in a parameter list" do
311
+ browser.select_list(name: "new_user_languages").clear
312
+ browser.select_list(name: "new_user_languages").select("Danish", "Swedish")
313
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "Swedish"]
314
+ end
315
+
316
+ bug "https://bugzilla.mozilla.org/show_bug.cgi?id=1255957", :firefox do
317
+ it "selects empty options" do
318
+ browser.select_list(id: "delete_user_username").select("")
319
+ expect(browser.select_list(id: "delete_user_username").selected_options.map(&:text)).to eq [""]
320
+ end
321
+ end
322
+
323
+ it "returns the value selected" do
324
+ expect(browser.select_list(name: "new_user_languages").select("Danish")).to eq "Danish"
325
+ end
326
+
327
+ not_compliant_on :safari do
328
+ it "fires onchange event when selecting an item" do
329
+ browser.select_list(id: "new_user_languages").select("Danish")
330
+ expect(messages).to eq ['changed language']
331
+ end
332
+
333
+ it "doesn't fire onchange event when selecting an already selected item" do
334
+ browser.select_list(id: "new_user_languages").clear # removes the two pre-selected options
335
+ browser.select_list(id: "new_user_languages").select("English")
336
+ expect(messages.size).to eq 3
337
+
338
+ browser.select_list(id: "new_user_languages").select("English")
339
+ expect(messages.size).to eq 3
340
+ end
341
+
342
+ it "returns an empty string when selecting an option that disappears when selected" do
343
+ expect(browser.select_list(id: 'obsolete').select('sweden')).to eq ''
344
+ end
345
+ end
346
+
347
+ it "selects options with a single-quoted value" do
348
+ browser.select_list(id: 'single-quote').select("'foo'")
349
+ end
350
+
351
+ compliant_on :relaxed_locate do
352
+ it 'waits to select an option' do
353
+ browser.goto WatirSpec.url_for("wait.html")
354
+ browser.a(id: 'add_select').click
355
+ select_list = browser.select_list(id: 'languages')
356
+ Watir.default_timeout = 2
357
+ begin
358
+ start_time = ::Time.now
359
+ expect { select_list.select('No') }.to raise_error Watir::Exception::NoValueFoundException
360
+ expect(::Time.now - start_time).to be > 2
361
+ ensure
362
+ Watir.default_timeout = 30
363
+ end
364
+ end
365
+ end
366
+
367
+ it "raises NoValueFoundException if the option doesn't exist" do
368
+ expect { browser.select_list(name: "new_user_country").select("missing_option") }.to raise_no_value_found_exception
369
+ expect { browser.select_list(name: "new_user_country").select(/missing_option/) }.to raise_no_value_found_exception
370
+ end
371
+
372
+ it "raises ObjectDisabledException if the option is disabled" do
373
+ expect { browser.select_list(name: "new_user_languages").select("Russian") }.to raise_object_disabled_exception
374
+ end
375
+
376
+ it "raises a TypeError if argument is not a String, Regexp or Numeric" do
377
+ expect { browser.select_list(id: "new_user_languages").select({}) }.to raise_error(TypeError)
378
+ end
379
+ end
380
+
381
+ describe "#select!" do
382
+ context "when finding by value" do
383
+ it "selects an option with a String" do
384
+ browser.select_list(name: "new_user_languages").clear
385
+ browser.select_list(name: "new_user_languages").select!("2")
386
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq %w[EN]
387
+ end
388
+
389
+ it "selects an option with a Regex" do
390
+ browser.select_list(name: "new_user_languages").clear
391
+ browser.select_list(name: "new_user_languages").select!(/2/)
392
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq %w[EN]
393
+ end
394
+ end
395
+
396
+ context "when finding by text" do
397
+ it "selects an option with a String" do
398
+ browser.select_list(name: "new_user_country").select!("Denmark")
399
+ expect(browser.select_list(name: "new_user_country").selected_options.map(&:text)).to eq ["Denmark"]
400
+ end
401
+
402
+ it "selects an option with a Regexp" do
403
+ browser.select_list(name: "new_user_country").select!(/Denmark/)
404
+ expect(browser.select_list(name: "new_user_country").selected_options.map(&:text)).to eq ["Denmark"]
405
+ end
406
+ end
407
+
408
+ context "when finding by label" do
409
+ it "selects an option with a String" do
410
+ browser.select_list(name: "new_user_languages").clear
411
+ browser.select_list(name: "new_user_languages").select!("NO")
412
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["NO"]
413
+ end
414
+
415
+ it "selects an option with a Regexp" do
416
+ browser.select_list(name: "new_user_languages").clear
417
+ browser.select_list(name: "new_user_languages").select!(/NO/)
418
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["NO"]
419
+ end
420
+ end
421
+
422
+ it "selects multiple items successively" do
423
+ browser.select_list(name: "new_user_languages").clear
424
+ browser.select_list(name: "new_user_languages").select!("Danish")
425
+ browser.select_list(name: "new_user_languages").select!("Swedish")
426
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "Swedish"]
427
+ end
428
+
429
+ it "selects each item in an Array" do
430
+ browser.select_list(name: "new_user_languages").clear
431
+ browser.select_list(name: "new_user_languages").select!(["Danish", "Swedish"])
432
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "Swedish"]
433
+ end
434
+
435
+ it "selects each item in a parameter list" do
436
+ browser.select_list(name: "new_user_languages").clear
437
+ browser.select_list(name: "new_user_languages").select!("Danish", "Swedish")
438
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "Swedish"]
439
+ end
440
+
441
+ bug "https://bugzilla.mozilla.org/show_bug.cgi?id=1255957", :firefox do
442
+ it "selects empty options" do
443
+ browser.select_list(id: "delete_user_username").select!("")
444
+ expect(browser.select_list(id: "delete_user_username").selected_options.map(&:text)).to eq [""]
445
+ end
446
+ end
447
+
448
+ it "returns the value selected" do
449
+ browser.select_list(name: "new_user_languages").clear
450
+ expect(browser.select_list(name: "new_user_languages").select!("Danish")).to eq "Danish"
451
+ end
452
+
453
+ it "selects options with a single-quoted value" do
454
+ browser.select_list(id: 'single-quote').select!("'foo'")
455
+ end
456
+
457
+ it "selects exact matches when using String" do
458
+ browser.select_list(name: "new_user_languages").clear
459
+ browser.select_list(name: "new_user_languages").select!("Latin")
460
+ selected_options = browser.select_list(name: "new_user_languages").selected_options.map(&:text)
461
+ expect(selected_options).not_to include("Azeri - Latin")
462
+ expect(selected_options).to include("Latin")
463
+ end
464
+
465
+ it "raises NoValueFoundException if the option doesn't exist" do
466
+ expect { browser.select_list(id: "new_user_country").select!("missing_option") }.to raise_no_value_found_exception
467
+ expect { browser.select_list(id: "new_user_country").select!(/missing_option/) }.to raise_no_value_found_exception
468
+ end
469
+
470
+ it "raises ObjectDisabledException if the option is disabled" do
471
+ browser.select_list(id: "new_user_languages").clear
472
+ expect { browser.select_list(id: "new_user_languages").select!("Russian") }.to raise_object_disabled_exception
473
+ end
474
+
475
+ it "raises a TypeError if argument is not a String, Regexp or Numeric" do
476
+ browser.select_list(id: "new_user_languages").clear
477
+ expect { browser.select_list(id: "new_user_languages").select!({}) }.to raise_error(TypeError)
478
+ end
479
+ end
480
+
481
+ describe "#select_all" do
482
+ it "selects multiple options based on text" do
483
+ browser.select_list(name: "new_user_languages").clear
484
+ browser.select_list(name: "new_user_languages").select_all(/ish/)
485
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "EN", "Swedish"]
486
+ end
487
+
488
+ it "selects multiple options based on labels" do
489
+ browser.select_list(name: "new_user_languages").clear
490
+ browser.select_list(name: "new_user_languages").select_all(/NO|EN/)
491
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["EN", "NO"]
492
+ end
493
+
494
+ it "selects all options in an Array" do
495
+ browser.select_list(name: "new_user_languages").clear
496
+ browser.select_list(name: "new_user_languages").select_all([/ish/, /Latin/])
497
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "EN", "Swedish", "Azeri - Latin", "Latin"]
498
+ end
499
+
500
+ it "selects all options in a parameter list" do
501
+ browser.select_list(name: "new_user_languages").clear
502
+ browser.select_list(name: "new_user_languages").select_all(/ish/, /Latin/)
503
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "EN", "Swedish", "Azeri - Latin", "Latin"]
504
+ end
505
+
506
+ it "returns the first matching value if there are multiple matches" do
507
+ expect(browser.select_list(name: "new_user_languages").select_all(/ish/)).to eq "Danish"
508
+ end
509
+ end
510
+
511
+ describe "#select_all!" do
512
+ it "selects multiple options based on value" do
513
+ browser.select_list(name: "new_user_languages").clear
514
+ browser.select_list(name: "new_user_languages").select_all!(/\d+/)
515
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "EN", "NO", "Russian"]
516
+ end
517
+
518
+ it "selects multiple options based on text" do
519
+ browser.select_list(name: "new_user_languages").clear
520
+ browser.select_list(name: "new_user_languages").select_all!(/ish/)
521
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "EN", "Swedish"]
522
+ end
523
+
524
+ it "selects multiple options based on labels" do
525
+ browser.select_list(name: "new_user_languages").clear
526
+ browser.select_list(name: "new_user_languages").select_all!(/NO|EN/)
527
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["EN", "NO"]
528
+ end
529
+
530
+ it "selects all options in an Array" do
531
+ browser.select_list(name: "new_user_languages").clear
532
+ browser.select_list(name: "new_user_languages").select_all!([/ish/, /Latin/])
533
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "EN", "Swedish", "Azeri - Latin", "Latin"]
534
+ end
535
+
536
+ it "selects all options in a parameter list" do
537
+ browser.select_list(name: "new_user_languages").clear
538
+ browser.select_list(name: "new_user_languages").select_all!(/ish/, /Latin/)
539
+ expect(browser.select_list(name: "new_user_languages").selected_options.map(&:text)).to eq ["Danish", "EN", "Swedish", "Azeri - Latin", "Latin"]
540
+ end
541
+
542
+ it "returns the first matching value if there are multiple matches" do
543
+ expect(browser.select_list(name: "new_user_languages").select_all!(/ish/)).to eq "Danish"
544
+ end
545
+ end
546
+
547
+ # deprecate?
548
+ not_compliant_on :safari do
549
+ describe "#select_value" do
550
+ end
551
+ end
552
+
553
+ end