capybara 2.15.1 → 3.35.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (298) hide show
  1. checksums.yaml +5 -5
  2. data/.yardopts +1 -1
  3. data/History.md +871 -9
  4. data/License.txt +1 -1
  5. data/README.md +99 -75
  6. data/lib/capybara/config.rb +20 -59
  7. data/lib/capybara/cucumber.rb +2 -3
  8. data/lib/capybara/driver/base.rb +35 -18
  9. data/lib/capybara/driver/node.rb +35 -9
  10. data/lib/capybara/dsl.rb +15 -6
  11. data/lib/capybara/helpers.rb +72 -28
  12. data/lib/capybara/minitest/spec.rb +173 -81
  13. data/lib/capybara/minitest.rb +220 -111
  14. data/lib/capybara/node/actions.rb +270 -172
  15. data/lib/capybara/node/base.rb +41 -34
  16. data/lib/capybara/node/document.rb +15 -3
  17. data/lib/capybara/node/document_matchers.rb +19 -21
  18. data/lib/capybara/node/element.rb +353 -137
  19. data/lib/capybara/node/finders.rb +144 -138
  20. data/lib/capybara/node/matchers.rb +369 -209
  21. data/lib/capybara/node/simple.rb +55 -26
  22. data/lib/capybara/queries/ancestor_query.rb +11 -9
  23. data/lib/capybara/queries/base_query.rb +39 -28
  24. data/lib/capybara/queries/current_path_query.rb +22 -25
  25. data/lib/capybara/queries/match_query.rb +14 -7
  26. data/lib/capybara/queries/selector_query.rb +633 -145
  27. data/lib/capybara/queries/sibling_query.rb +10 -9
  28. data/lib/capybara/queries/style_query.rb +45 -0
  29. data/lib/capybara/queries/text_query.rb +56 -38
  30. data/lib/capybara/queries/title_query.rb +8 -11
  31. data/lib/capybara/rack_test/browser.rb +57 -41
  32. data/lib/capybara/rack_test/css_handlers.rb +6 -4
  33. data/lib/capybara/rack_test/driver.rb +18 -13
  34. data/lib/capybara/rack_test/errors.rb +6 -0
  35. data/lib/capybara/rack_test/form.rb +73 -58
  36. data/lib/capybara/rack_test/node.rb +182 -78
  37. data/lib/capybara/rails.rb +3 -7
  38. data/lib/capybara/registration_container.rb +44 -0
  39. data/lib/capybara/registrations/drivers.rb +42 -0
  40. data/lib/capybara/registrations/patches/puma_ssl.rb +29 -0
  41. data/lib/capybara/registrations/servers.rb +45 -0
  42. data/lib/capybara/result.rb +96 -62
  43. data/lib/capybara/rspec/features.rb +17 -50
  44. data/lib/capybara/rspec/matcher_proxies.rb +51 -14
  45. data/lib/capybara/rspec/matchers/base.rb +111 -0
  46. data/lib/capybara/rspec/matchers/become_closed.rb +33 -0
  47. data/lib/capybara/rspec/matchers/compound.rb +88 -0
  48. data/lib/capybara/rspec/matchers/count_sugar.rb +37 -0
  49. data/lib/capybara/rspec/matchers/have_ancestor.rb +28 -0
  50. data/lib/capybara/rspec/matchers/have_current_path.rb +29 -0
  51. data/lib/capybara/rspec/matchers/have_selector.rb +77 -0
  52. data/lib/capybara/rspec/matchers/have_sibling.rb +27 -0
  53. data/lib/capybara/rspec/matchers/have_text.rb +33 -0
  54. data/lib/capybara/rspec/matchers/have_title.rb +29 -0
  55. data/lib/capybara/rspec/matchers/match_selector.rb +27 -0
  56. data/lib/capybara/rspec/matchers/match_style.rb +43 -0
  57. data/lib/capybara/rspec/matchers/spatial_sugar.rb +39 -0
  58. data/lib/capybara/rspec/matchers.rb +144 -264
  59. data/lib/capybara/rspec.rb +7 -11
  60. data/lib/capybara/selector/builders/css_builder.rb +84 -0
  61. data/lib/capybara/selector/builders/xpath_builder.rb +71 -0
  62. data/lib/capybara/selector/css.rb +89 -17
  63. data/lib/capybara/selector/definition/button.rb +63 -0
  64. data/lib/capybara/selector/definition/checkbox.rb +26 -0
  65. data/lib/capybara/selector/definition/css.rb +10 -0
  66. data/lib/capybara/selector/definition/datalist_input.rb +35 -0
  67. data/lib/capybara/selector/definition/datalist_option.rb +25 -0
  68. data/lib/capybara/selector/definition/element.rb +28 -0
  69. data/lib/capybara/selector/definition/field.rb +40 -0
  70. data/lib/capybara/selector/definition/fieldset.rb +14 -0
  71. data/lib/capybara/selector/definition/file_field.rb +13 -0
  72. data/lib/capybara/selector/definition/fillable_field.rb +33 -0
  73. data/lib/capybara/selector/definition/frame.rb +17 -0
  74. data/lib/capybara/selector/definition/id.rb +6 -0
  75. data/lib/capybara/selector/definition/label.rb +62 -0
  76. data/lib/capybara/selector/definition/link.rb +54 -0
  77. data/lib/capybara/selector/definition/link_or_button.rb +16 -0
  78. data/lib/capybara/selector/definition/option.rb +27 -0
  79. data/lib/capybara/selector/definition/radio_button.rb +27 -0
  80. data/lib/capybara/selector/definition/select.rb +81 -0
  81. data/lib/capybara/selector/definition/table.rb +109 -0
  82. data/lib/capybara/selector/definition/table_row.rb +21 -0
  83. data/lib/capybara/selector/definition/xpath.rb +5 -0
  84. data/lib/capybara/selector/definition.rb +278 -0
  85. data/lib/capybara/selector/filter.rb +2 -17
  86. data/lib/capybara/selector/filter_set.rb +83 -33
  87. data/lib/capybara/selector/filters/base.rb +50 -6
  88. data/lib/capybara/selector/filters/expression_filter.rb +8 -26
  89. data/lib/capybara/selector/filters/locator_filter.rb +29 -0
  90. data/lib/capybara/selector/filters/node_filter.rb +16 -12
  91. data/lib/capybara/selector/regexp_disassembler.rb +214 -0
  92. data/lib/capybara/selector/selector.rb +89 -210
  93. data/lib/capybara/selector/xpath_extensions.rb +17 -0
  94. data/lib/capybara/selector.rb +226 -526
  95. data/lib/capybara/selenium/atoms/getAttribute.min.js +1 -0
  96. data/lib/capybara/selenium/atoms/isDisplayed.min.js +1 -0
  97. data/lib/capybara/selenium/atoms/src/getAttribute.js +161 -0
  98. data/lib/capybara/selenium/atoms/src/isDisplayed.js +454 -0
  99. data/lib/capybara/selenium/driver.rb +334 -277
  100. data/lib/capybara/selenium/driver_specializations/chrome_driver.rb +117 -0
  101. data/lib/capybara/selenium/driver_specializations/edge_driver.rb +124 -0
  102. data/lib/capybara/selenium/driver_specializations/firefox_driver.rb +89 -0
  103. data/lib/capybara/selenium/driver_specializations/internet_explorer_driver.rb +26 -0
  104. data/lib/capybara/selenium/driver_specializations/safari_driver.rb +24 -0
  105. data/lib/capybara/selenium/extensions/file_input_click_emulation.rb +34 -0
  106. data/lib/capybara/selenium/extensions/find.rb +110 -0
  107. data/lib/capybara/selenium/extensions/html5_drag.rb +228 -0
  108. data/lib/capybara/selenium/extensions/modifier_keys_stack.rb +28 -0
  109. data/lib/capybara/selenium/extensions/scroll.rb +76 -0
  110. data/lib/capybara/selenium/logger_suppressor.rb +40 -0
  111. data/lib/capybara/selenium/node.rb +506 -124
  112. data/lib/capybara/selenium/nodes/chrome_node.rb +137 -0
  113. data/lib/capybara/selenium/nodes/edge_node.rb +104 -0
  114. data/lib/capybara/selenium/nodes/firefox_node.rb +136 -0
  115. data/lib/capybara/selenium/nodes/ie_node.rb +22 -0
  116. data/lib/capybara/selenium/nodes/safari_node.rb +118 -0
  117. data/lib/capybara/selenium/patches/action_pauser.rb +26 -0
  118. data/lib/capybara/selenium/patches/atoms.rb +18 -0
  119. data/lib/capybara/selenium/patches/is_displayed.rb +16 -0
  120. data/lib/capybara/selenium/patches/logs.rb +45 -0
  121. data/lib/capybara/selenium/patches/pause_duration_fix.rb +9 -0
  122. data/lib/capybara/selenium/patches/persistent_client.rb +20 -0
  123. data/lib/capybara/server/animation_disabler.rb +63 -0
  124. data/lib/capybara/server/checker.rb +44 -0
  125. data/lib/capybara/server/middleware.rb +71 -0
  126. data/lib/capybara/server.rb +59 -67
  127. data/lib/capybara/session/config.rb +79 -59
  128. data/lib/capybara/session/matchers.rb +41 -25
  129. data/lib/capybara/session.rb +360 -356
  130. data/lib/capybara/spec/public/jquery.js +5 -5
  131. data/lib/capybara/spec/public/offset.js +6 -0
  132. data/lib/capybara/spec/public/test.js +159 -13
  133. data/lib/capybara/spec/session/accept_alert_spec.rb +12 -11
  134. data/lib/capybara/spec/session/accept_confirm_spec.rb +6 -5
  135. data/lib/capybara/spec/session/accept_prompt_spec.rb +34 -6
  136. data/lib/capybara/spec/session/all_spec.rb +163 -55
  137. data/lib/capybara/spec/session/ancestor_spec.rb +27 -24
  138. data/lib/capybara/spec/session/assert_all_of_selectors_spec.rb +68 -38
  139. data/lib/capybara/spec/session/assert_current_path_spec.rb +75 -0
  140. data/lib/capybara/spec/session/assert_selector_spec.rb +143 -0
  141. data/lib/capybara/spec/session/assert_style_spec.rb +26 -0
  142. data/lib/capybara/spec/session/{assert_text.rb → assert_text_spec.rb} +91 -59
  143. data/lib/capybara/spec/session/{assert_title.rb → assert_title_spec.rb} +22 -12
  144. data/lib/capybara/spec/session/attach_file_spec.rb +138 -69
  145. data/lib/capybara/spec/session/body_spec.rb +12 -13
  146. data/lib/capybara/spec/session/check_spec.rb +107 -55
  147. data/lib/capybara/spec/session/choose_spec.rb +58 -31
  148. data/lib/capybara/spec/session/click_button_spec.rb +231 -173
  149. data/lib/capybara/spec/session/click_link_or_button_spec.rb +55 -35
  150. data/lib/capybara/spec/session/click_link_spec.rb +82 -58
  151. data/lib/capybara/spec/session/current_scope_spec.rb +11 -10
  152. data/lib/capybara/spec/session/current_url_spec.rb +57 -39
  153. data/lib/capybara/spec/session/dismiss_confirm_spec.rb +4 -4
  154. data/lib/capybara/spec/session/dismiss_prompt_spec.rb +3 -2
  155. data/lib/capybara/spec/session/element/{assert_match_selector.rb → assert_match_selector_spec.rb} +11 -9
  156. data/lib/capybara/spec/session/element/match_css_spec.rb +18 -10
  157. data/lib/capybara/spec/session/element/match_xpath_spec.rb +9 -7
  158. data/lib/capybara/spec/session/element/matches_selector_spec.rb +71 -57
  159. data/lib/capybara/spec/session/evaluate_async_script_spec.rb +23 -0
  160. data/lib/capybara/spec/session/evaluate_script_spec.rb +30 -9
  161. data/lib/capybara/spec/session/execute_script_spec.rb +10 -8
  162. data/lib/capybara/spec/session/fill_in_spec.rb +128 -43
  163. data/lib/capybara/spec/session/find_button_spec.rb +25 -24
  164. data/lib/capybara/spec/session/find_by_id_spec.rb +10 -9
  165. data/lib/capybara/spec/session/find_field_spec.rb +37 -41
  166. data/lib/capybara/spec/session/find_link_spec.rb +36 -17
  167. data/lib/capybara/spec/session/find_spec.rb +245 -144
  168. data/lib/capybara/spec/session/first_spec.rb +79 -51
  169. data/lib/capybara/spec/session/frame/frame_title_spec.rb +23 -0
  170. data/lib/capybara/spec/session/frame/frame_url_spec.rb +23 -0
  171. data/lib/capybara/spec/session/frame/switch_to_frame_spec.rb +33 -20
  172. data/lib/capybara/spec/session/frame/within_frame_spec.rb +50 -32
  173. data/lib/capybara/spec/session/go_back_spec.rb +2 -1
  174. data/lib/capybara/spec/session/go_forward_spec.rb +2 -1
  175. data/lib/capybara/spec/session/has_all_selectors_spec.rb +69 -0
  176. data/lib/capybara/spec/session/has_ancestor_spec.rb +46 -0
  177. data/lib/capybara/spec/session/has_any_selectors_spec.rb +25 -0
  178. data/lib/capybara/spec/session/has_button_spec.rb +70 -13
  179. data/lib/capybara/spec/session/has_css_spec.rb +272 -137
  180. data/lib/capybara/spec/session/has_current_path_spec.rb +87 -45
  181. data/lib/capybara/spec/session/has_field_spec.rb +115 -59
  182. data/lib/capybara/spec/session/has_link_spec.rb +10 -9
  183. data/lib/capybara/spec/session/has_none_selectors_spec.rb +78 -0
  184. data/lib/capybara/spec/session/has_select_spec.rb +103 -74
  185. data/lib/capybara/spec/session/has_selector_spec.rb +105 -71
  186. data/lib/capybara/spec/session/has_sibling_spec.rb +50 -0
  187. data/lib/capybara/spec/session/has_table_spec.rb +172 -5
  188. data/lib/capybara/spec/session/has_text_spec.rb +113 -61
  189. data/lib/capybara/spec/session/has_title_spec.rb +20 -14
  190. data/lib/capybara/spec/session/has_xpath_spec.rb +57 -38
  191. data/lib/capybara/spec/session/{headers.rb → headers_spec.rb} +3 -2
  192. data/lib/capybara/spec/session/html_spec.rb +14 -6
  193. data/lib/capybara/spec/session/matches_style_spec.rb +35 -0
  194. data/lib/capybara/spec/session/node_spec.rb +950 -152
  195. data/lib/capybara/spec/session/node_wrapper_spec.rb +39 -0
  196. data/lib/capybara/spec/session/refresh_spec.rb +12 -6
  197. data/lib/capybara/spec/session/reset_session_spec.rb +69 -35
  198. data/lib/capybara/spec/session/{response_code.rb → response_code_spec.rb} +2 -1
  199. data/lib/capybara/spec/session/save_and_open_page_spec.rb +3 -2
  200. data/lib/capybara/spec/session/save_and_open_screenshot_spec.rb +8 -12
  201. data/lib/capybara/spec/session/save_page_spec.rb +42 -55
  202. data/lib/capybara/spec/session/save_screenshot_spec.rb +16 -14
  203. data/lib/capybara/spec/session/screenshot_spec.rb +2 -2
  204. data/lib/capybara/spec/session/scroll_spec.rb +117 -0
  205. data/lib/capybara/spec/session/select_spec.rb +107 -80
  206. data/lib/capybara/spec/session/selectors_spec.rb +52 -19
  207. data/lib/capybara/spec/session/sibling_spec.rb +10 -10
  208. data/lib/capybara/spec/session/text_spec.rb +37 -21
  209. data/lib/capybara/spec/session/title_spec.rb +17 -5
  210. data/lib/capybara/spec/session/uncheck_spec.rb +42 -22
  211. data/lib/capybara/spec/session/unselect_spec.rb +39 -38
  212. data/lib/capybara/spec/session/visit_spec.rb +99 -32
  213. data/lib/capybara/spec/session/window/become_closed_spec.rb +24 -20
  214. data/lib/capybara/spec/session/window/current_window_spec.rb +5 -3
  215. data/lib/capybara/spec/session/window/open_new_window_spec.rb +5 -3
  216. data/lib/capybara/spec/session/window/switch_to_window_spec.rb +27 -22
  217. data/lib/capybara/spec/session/window/window_opened_by_spec.rb +12 -6
  218. data/lib/capybara/spec/session/window/window_spec.rb +97 -63
  219. data/lib/capybara/spec/session/window/windows_spec.rb +12 -10
  220. data/lib/capybara/spec/session/window/within_window_spec.rb +31 -86
  221. data/lib/capybara/spec/session/within_spec.rb +70 -44
  222. data/lib/capybara/spec/spec_helper.rb +48 -43
  223. data/lib/capybara/spec/test_app.rb +78 -40
  224. data/lib/capybara/spec/views/animated.erb +49 -0
  225. data/lib/capybara/spec/views/form.erb +130 -39
  226. data/lib/capybara/spec/views/frame_child.erb +3 -2
  227. data/lib/capybara/spec/views/frame_one.erb +1 -0
  228. data/lib/capybara/spec/views/initial_alert.erb +10 -0
  229. data/lib/capybara/spec/views/obscured.erb +47 -0
  230. data/lib/capybara/spec/views/offset.erb +32 -0
  231. data/lib/capybara/spec/views/react.erb +45 -0
  232. data/lib/capybara/spec/views/scroll.erb +20 -0
  233. data/lib/capybara/spec/views/spatial.erb +31 -0
  234. data/lib/capybara/spec/views/tables.erb +68 -1
  235. data/lib/capybara/spec/views/with_animation.erb +82 -0
  236. data/lib/capybara/spec/views/with_dragula.erb +24 -0
  237. data/lib/capybara/spec/views/with_fixed_header_footer.erb +17 -0
  238. data/lib/capybara/spec/views/with_hover.erb +6 -0
  239. data/lib/capybara/spec/views/with_hover1.erb +10 -0
  240. data/lib/capybara/spec/views/with_html.erb +69 -10
  241. data/lib/capybara/spec/views/with_html5_svg.erb +20 -0
  242. data/lib/capybara/spec/views/with_jquery_animation.erb +24 -0
  243. data/lib/capybara/spec/views/with_js.erb +37 -0
  244. data/lib/capybara/spec/views/with_jstree.erb +26 -0
  245. data/lib/capybara/spec/views/with_namespace.erb +20 -0
  246. data/lib/capybara/spec/views/with_scope_other.erb +6 -0
  247. data/lib/capybara/spec/views/with_sortable_js.erb +21 -0
  248. data/lib/capybara/spec/views/within_frames.erb +4 -1
  249. data/lib/capybara/version.rb +2 -1
  250. data/lib/capybara/window.rb +35 -33
  251. data/lib/capybara.rb +131 -104
  252. data/spec/basic_node_spec.rb +47 -34
  253. data/spec/capybara_spec.rb +53 -104
  254. data/spec/css_builder_spec.rb +101 -0
  255. data/spec/css_splitter_spec.rb +38 -0
  256. data/spec/dsl_spec.rb +81 -62
  257. data/spec/filter_set_spec.rb +27 -9
  258. data/spec/fixtures/certificate.pem +25 -0
  259. data/spec/fixtures/key.pem +27 -0
  260. data/spec/fixtures/selenium_driver_rspec_failure.rb +5 -4
  261. data/spec/fixtures/selenium_driver_rspec_success.rb +5 -4
  262. data/spec/minitest_spec.rb +49 -7
  263. data/spec/minitest_spec_spec.rb +94 -59
  264. data/spec/per_session_config_spec.rb +14 -13
  265. data/spec/rack_test_spec.rb +176 -125
  266. data/spec/regexp_dissassembler_spec.rb +250 -0
  267. data/spec/result_spec.rb +101 -46
  268. data/spec/rspec/features_spec.rb +37 -31
  269. data/spec/rspec/scenarios_spec.rb +9 -7
  270. data/spec/rspec/shared_spec_matchers.rb +448 -421
  271. data/spec/rspec/views_spec.rb +5 -3
  272. data/spec/rspec_matchers_spec.rb +27 -11
  273. data/spec/rspec_spec.rb +109 -89
  274. data/spec/sauce_spec_chrome.rb +43 -0
  275. data/spec/selector_spec.rb +396 -67
  276. data/spec/selenium_spec_chrome.rb +184 -35
  277. data/spec/selenium_spec_chrome_remote.rb +100 -0
  278. data/spec/selenium_spec_edge.rb +47 -0
  279. data/spec/selenium_spec_firefox.rb +183 -41
  280. data/spec/selenium_spec_firefox_remote.rb +80 -0
  281. data/spec/selenium_spec_ie.rb +150 -0
  282. data/spec/selenium_spec_safari.rb +148 -0
  283. data/spec/server_spec.rb +198 -99
  284. data/spec/session_spec.rb +53 -16
  285. data/spec/shared_selenium_node.rb +83 -0
  286. data/spec/shared_selenium_session.rb +486 -97
  287. data/spec/spec_helper.rb +93 -7
  288. data/spec/xpath_builder_spec.rb +93 -0
  289. metadata +338 -64
  290. data/.yard/templates_custom/default/class/html/selectors.erb +0 -38
  291. data/.yard/templates_custom/default/class/html/setup.rb +0 -17
  292. data/.yard/yard_extensions.rb +0 -78
  293. data/lib/capybara/query.rb +0 -7
  294. data/lib/capybara/rspec/compound.rb +0 -95
  295. data/lib/capybara/spec/session/assert_current_path.rb +0 -72
  296. data/lib/capybara/spec/session/assert_selector.rb +0 -148
  297. data/lib/capybara/spec/session/source_spec.rb +0 -0
  298. data/spec/selenium_spec_marionette.rb +0 -117
@@ -1,70 +1,105 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  Capybara::SpecHelper.spec '#has_current_path?' do
3
4
  before do
4
5
  @session.visit('/with_js')
5
6
  end
6
7
 
7
- it "should be true if the page has the given current path" do
8
+ it 'should be true if the page has the given current path' do
8
9
  expect(@session).to have_current_path('/with_js')
9
10
  end
10
11
 
11
- it "should allow regexp matches" do
12
+ it 'should allow regexp matches' do
12
13
  expect(@session).to have_current_path(/w[a-z]{3}_js/)
13
14
  expect(@session).not_to have_current_path(/monkey/)
14
15
  end
15
16
 
16
- it "should handle non-escaped query options" do
17
- @session.click_link("Non-escaped query options")
18
- expect(@session).to have_current_path("/with_html?options[]=things")
17
+ it 'should not raise an error when non-http' do
18
+ @session.reset_session!
19
+ expect(@session.has_current_path?(/monkey/)).to eq false
20
+ expect(@session.has_current_path?('/with_js')).to eq false
21
+ end
22
+
23
+ it 'should handle non-escaped query options' do
24
+ @session.click_link('Non-escaped query options')
25
+ expect(@session).to have_current_path('/with_html?options[]=things')
19
26
  end
20
27
 
21
- it "should handle escaped query options" do
22
- @session.click_link("Escaped query options")
23
- expect(@session).to have_current_path("/with_html?options%5B%5D=things")
28
+ it 'should handle escaped query options' do
29
+ @session.click_link('Escaped query options')
30
+ expect(@session).to have_current_path('/with_html?options%5B%5D=things')
24
31
  end
25
32
 
26
- it "should wait for current_path", requires: [:js] do
27
- @session.click_link("Change page")
28
- expect(@session).to have_current_path("/with_html", wait: 3)
33
+ it 'should wait for current_path', requires: [:js] do
34
+ @session.click_link('Change page')
35
+ expect(@session).to have_current_path('/with_html', wait: 3)
29
36
  end
30
37
 
31
- it "should be false if the page has not the given current_path" do
38
+ it 'should be false if the page has not the given current_path' do
32
39
  expect(@session).not_to have_current_path('/with_html')
33
40
  end
34
41
 
35
- it "should check query options" do
42
+ it 'should check query options' do
36
43
  @session.visit('/with_js?test=test')
37
44
  expect(@session).to have_current_path('/with_js?test=test')
38
45
  end
39
46
 
40
- it "should compare the full url" do
47
+ it 'should compare the full url if url: true is used' do
41
48
  expect(@session).to have_current_path(%r{\Ahttp://[^/]*/with_js\Z}, url: true)
49
+ domain_port = if @session.respond_to?(:server) && @session.server
50
+ "#{@session.server.host}:#{@session.server.port}"
51
+ else
52
+ 'www.example.com'
53
+ end
54
+ expect(@session).to have_current_path("http://#{domain_port}/with_js", url: true)
42
55
  end
43
56
 
44
- it "should ignore the query" do
45
- @session.visit('/with_js?test=test')
46
- expect(@session).to have_current_path('/with_js?test=test')
47
- expect(@session).to have_current_path('/with_js', only_path: true)
57
+ it 'should not compare the full url if url: true is not passed' do
58
+ expect(@session).to have_current_path(%r{^/with_js\Z})
59
+ expect(@session).to have_current_path('/with_js')
48
60
  end
49
61
 
50
- it "should not allow url and only_path at the same time" do
51
- expect {
52
- expect(@session).to have_current_path('/with_js', url: true, only_path: true)
53
- }. to raise_error ArgumentError
62
+ it 'should not compare the full url if url: false is passed' do
63
+ expect(@session).to have_current_path(%r{^/with_js\Z}, url: false)
64
+ expect(@session).to have_current_path('/with_js', url: false)
54
65
  end
55
66
 
56
- it "should not raise an exception if the current_url is nil" do
57
- allow_any_instance_of(Capybara::Session).to receive(:current_url) { nil }
67
+ it 'should default to full url if value is a url' do
68
+ url = @session.current_url
69
+ expect(url).to match(/with_js$/)
70
+ expect(@session).to have_current_path(url)
71
+ expect(@session).not_to have_current_path('http://www.not_example.com/with_js')
72
+ end
58
73
 
59
- # Without only_path option
60
- expect {
74
+ it 'should ignore the query' do
75
+ @session.visit('/with_js?test=test')
76
+ expect(@session).to have_current_path('/with_js?test=test')
77
+ expect(@session).to have_current_path('/with_js', ignore_query: true)
78
+ uri = ::Addressable::URI.parse(@session.current_url)
79
+ uri.query = nil
80
+ expect(@session).to have_current_path(uri.to_s, ignore_query: true)
81
+ end
82
+
83
+ it 'should not raise an exception if the current_url is nil' do
84
+ allow(@session).to receive(:current_url).and_return(nil)
85
+ allow(@session.page).to receive(:current_url).and_return(nil) if @session.respond_to? :page
86
+
87
+ # Without ignore_query option
88
+ expect do
61
89
  expect(@session).to have_current_path(nil)
62
- }. not_to raise_exception
90
+ end.not_to raise_exception
63
91
 
64
- # With only_path option
65
- expect {
66
- expect(@session).to have_current_path(nil, only_path: true)
67
- }. not_to raise_exception
92
+ # With ignore_query option
93
+ expect do
94
+ expect(@session).to have_current_path(nil, ignore_query: true)
95
+ end.not_to raise_exception
96
+ end
97
+
98
+ it 'should accept a filter block that receives Addressable::URL' do
99
+ @session.visit('/with_js?a=3&b=defgh')
100
+ expect(@session).to have_current_path('/with_js', ignore_query: true) { |url|
101
+ url.query_values.keys == %w[a b]
102
+ }
68
103
  end
69
104
  end
70
105
 
@@ -73,37 +108,44 @@ Capybara::SpecHelper.spec '#has_no_current_path?' do
73
108
  @session.visit('/with_js')
74
109
  end
75
110
 
76
- it "should be false if the page has the given current_path" do
111
+ it 'should be false if the page has the given current_path' do
77
112
  expect(@session).not_to have_no_current_path('/with_js')
78
113
  end
79
114
 
80
- it "should allow regexp matches" do
115
+ it 'should allow regexp matches' do
81
116
  expect(@session).not_to have_no_current_path(/w[a-z]{3}_js/)
82
117
  expect(@session).to have_no_current_path(/monkey/)
83
118
  end
84
119
 
85
- it "should wait for current_path to disappear", requires: [:js] do
120
+ it 'should wait for current_path to disappear', requires: [:js] do
86
121
  Capybara.using_wait_time(3) do
87
- @session.click_link("Change page")
122
+ @session.click_link('Change page')
88
123
  expect(@session).to have_no_current_path('/with_js')
89
124
  end
90
125
  end
91
126
 
92
- it "should be true if the page has not the given current_path" do
127
+ it 'should be true if the page has not the given current_path' do
93
128
  expect(@session).to have_no_current_path('/with_html')
94
129
  end
95
130
 
96
- it "should not raise an exception if the current_url is nil" do
97
- allow_any_instance_of(Capybara::Session).to receive(:current_url) { nil }
131
+ it 'should not raise an exception if the current_url is nil' do
132
+ allow(@session).to receive(:current_url).and_return(nil)
133
+ allow(@session.page).to receive(:current_url).and_return(nil) if @session.respond_to? :page
98
134
 
99
- # Without only_path option
100
- expect {
135
+ # Without ignore_query option
136
+ expect do
101
137
  expect(@session).not_to have_current_path('/with_js')
102
- }. not_to raise_exception
138
+ end.not_to raise_exception
139
+
140
+ # With ignore_query option
141
+ expect do
142
+ expect(@session).not_to have_current_path('/with_js', ignore_query: true)
143
+ end.not_to raise_exception
144
+ end
103
145
 
104
- # With only_path option
105
- expect {
106
- expect(@session).not_to have_current_path('/with_js', only_path: true)
107
- }. not_to raise_exception
146
+ it 'should accept a filter block that receives Addressable::URL' do
147
+ expect(@session).to have_no_current_path('/with_js', ignore_query: true) { |url|
148
+ !url.query.nil?
149
+ }
108
150
  end
109
151
  end
@@ -1,20 +1,21 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  Capybara::SpecHelper.spec '#has_field' do
3
4
  before { @session.visit('/form') }
4
5
 
5
- it "should be true if the field is on the page" do
6
+ it 'should be true if the field is on the page' do
6
7
  expect(@session).to have_field('Dog')
7
8
  expect(@session).to have_field('form_description')
8
9
  expect(@session).to have_field('Region')
9
- expect(@session).to have_field(:'Region')
10
+ expect(@session).to have_field(:Region)
10
11
  end
11
12
 
12
- it "should be false if the field is not on the page" do
13
+ it 'should be false if the field is not on the page' do
13
14
  expect(@session).not_to have_field('Monkey')
14
15
  end
15
16
 
16
17
  context 'with value' do
17
- it "should be true if a field with the given value is on the page" do
18
+ it 'should be true if a field with the given value is on the page' do
18
19
  expect(@session).to have_field('First Name', with: 'John')
19
20
  expect(@session).to have_field('First Name', with: /^Joh/)
20
21
  expect(@session).to have_field('Phone', with: '+1 555 7021')
@@ -22,28 +23,61 @@ Capybara::SpecHelper.spec '#has_field' do
22
23
  expect(@session).to have_field('Description', with: 'Descriptive text goes here')
23
24
  end
24
25
 
25
- it "should be false if the given field is not on the page" do
26
+ it 'should be false if the given field is not on the page' do
26
27
  expect(@session).not_to have_field('First Name', with: 'Peter')
27
28
  expect(@session).not_to have_field('First Name', with: /eter$/)
28
29
  expect(@session).not_to have_field('Wrong Name', with: 'John')
29
30
  expect(@session).not_to have_field('Description', with: 'Monkey')
30
31
  end
31
32
 
32
- it "should be true after the field has been filled in with the given value" do
33
+ it 'should be true after the field has been filled in with the given value' do
33
34
  @session.fill_in('First Name', with: 'Jonas')
34
35
  expect(@session).to have_field('First Name', with: 'Jonas')
35
36
  expect(@session).to have_field('First Name', with: /ona/)
36
37
  end
37
38
 
38
- it "should be false after the field has been filled in with a different value" do
39
+ it 'should be false after the field has been filled in with a different value' do
39
40
  @session.fill_in('First Name', with: 'Jonas')
40
41
  expect(@session).not_to have_field('First Name', with: 'John')
41
42
  expect(@session).not_to have_field('First Name', with: /John|Paul|George|Ringo/)
42
43
  end
44
+
45
+ it 'should output filter errors if only one element matched the selector but failed the filters' do
46
+ @session.fill_in('First Name', with: 'Thomas')
47
+ expect do
48
+ expect(@session).to have_field('First Name', with: 'Jonas')
49
+ end.to raise_exception(RSpec::Expectations::ExpectationNotMetError, /Expected value to be "Jonas" but was "Thomas"/)
50
+
51
+ # native boolean node filter
52
+ expect do
53
+ expect(@session).to have_field('First Name', readonly: true)
54
+ end.to raise_exception(RSpec::Expectations::ExpectationNotMetError, /Expected readonly true but it wasn't/)
55
+
56
+ # inherited boolean node filter
57
+ expect do
58
+ expect(@session).to have_field('form_pets_cat', checked: true)
59
+ end.to raise_exception(RSpec::Expectations::ExpectationNotMetError, /Expected checked true but it wasn't/)
60
+ end
61
+ end
62
+
63
+ context 'with validation message', requires: [:html_validation] do
64
+ it 'should accept a regexp' do
65
+ @session.fill_in('form_zipcode', with: '1234')
66
+ expect(@session).to have_field('form_zipcode', validation_message: /match the requested format/)
67
+ expect(@session).not_to have_field('form_zipcode', validation_message: /random/)
68
+ end
69
+
70
+ it 'should accept a string' do
71
+ @session.fill_in('form_zipcode', with: '1234')
72
+ expect(@session).to have_field('form_zipcode', validation_message: 'Please match the requested format.')
73
+ expect(@session).not_to have_field('form_zipcode', validation_message: 'match the requested format.')
74
+ @session.fill_in('form_zipcode', with: '12345')
75
+ expect(@session).to have_field('form_zipcode', validation_message: '')
76
+ end
43
77
  end
44
78
 
45
79
  context 'with type' do
46
- it "should be true if a field with the given type is on the page" do
80
+ it 'should be true if a field with the given type is on the page' do
47
81
  expect(@session).to have_field('First Name', type: 'text')
48
82
  expect(@session).to have_field('Html5 Email', type: 'email')
49
83
  expect(@session).to have_field('Html5 Multiple Email', type: 'email')
@@ -52,7 +86,7 @@ Capybara::SpecHelper.spec '#has_field' do
52
86
  expect(@session).to have_field('Languages', type: 'select')
53
87
  end
54
88
 
55
- it "should be false if the given field is not on the page" do
89
+ it 'should be false if the given field is not on the page' do
56
90
  expect(@session).not_to have_field('First Name', type: 'textarea')
57
91
  expect(@session).not_to have_field('Html5 Email', type: 'tel')
58
92
  expect(@session).not_to have_field('Html5 Multiple Email', type: 'tel')
@@ -60,59 +94,81 @@ Capybara::SpecHelper.spec '#has_field' do
60
94
  expect(@session).not_to have_field('Description', type: 'email')
61
95
  expect(@session).not_to have_field('Languages', type: 'textarea')
62
96
  end
97
+
98
+ it 'it can find type="hidden" elements if explicity specified' do
99
+ expect(@session).to have_field('form[data]', with: 'TWTW', type: 'hidden')
100
+ end
63
101
  end
64
102
 
65
103
  context 'with multiple' do
66
- it "should be true if a field with the multiple attribute is on the page" do
104
+ it 'should be true if a field with the multiple attribute is on the page' do
67
105
  expect(@session).to have_field('Html5 Multiple Email', multiple: true)
68
106
  end
69
107
 
70
- it "should be false if a field without the multiple attribute is not on the page" do
108
+ it 'should be false if a field without the multiple attribute is not on the page' do
71
109
  expect(@session).not_to have_field('Html5 Multiple Email', multiple: false)
72
110
  end
73
111
  end
112
+
113
+ context 'with valid', requires: [:js] do
114
+ it 'should be true if field is valid' do
115
+ @session.fill_in 'required', with: 'something'
116
+ @session.fill_in 'length', with: 'abcd'
117
+
118
+ expect(@session).to have_field('required', valid: true)
119
+ expect(@session).to have_field('length', valid: true)
120
+ end
121
+
122
+ it 'should be false if field is invalid' do
123
+ expect(@session).not_to have_field('required', valid: true)
124
+ expect(@session).to have_field('required', valid: false)
125
+
126
+ @session.fill_in 'length', with: 'abc'
127
+ expect(@session).not_to have_field('length', valid: true)
128
+ end
129
+ end
74
130
  end
75
131
 
76
132
  Capybara::SpecHelper.spec '#has_no_field' do
77
133
  before { @session.visit('/form') }
78
134
 
79
- it "should be false if the field is on the page" do
135
+ it 'should be false if the field is on the page' do
80
136
  expect(@session).not_to have_no_field('Dog')
81
137
  expect(@session).not_to have_no_field('form_description')
82
138
  expect(@session).not_to have_no_field('Region')
83
139
  end
84
140
 
85
- it "should be true if the field is not on the page" do
141
+ it 'should be true if the field is not on the page' do
86
142
  expect(@session).to have_no_field('Monkey')
87
143
  end
88
144
 
89
145
  context 'with value' do
90
- it "should be false if a field with the given value is on the page" do
146
+ it 'should be false if a field with the given value is on the page' do
91
147
  expect(@session).not_to have_no_field('First Name', with: 'John')
92
148
  expect(@session).not_to have_no_field('Phone', with: '+1 555 7021')
93
149
  expect(@session).not_to have_no_field('Street', with: 'Sesame street 66')
94
150
  expect(@session).not_to have_no_field('Description', with: 'Descriptive text goes here')
95
151
  end
96
152
 
97
- it "should be true if the given field is not on the page" do
153
+ it 'should be true if the given field is not on the page' do
98
154
  expect(@session).to have_no_field('First Name', with: 'Peter')
99
155
  expect(@session).to have_no_field('Wrong Name', with: 'John')
100
156
  expect(@session).to have_no_field('Description', with: 'Monkey')
101
157
  end
102
158
 
103
- it "should be false after the field has been filled in with the given value" do
159
+ it 'should be false after the field has been filled in with the given value' do
104
160
  @session.fill_in('First Name', with: 'Jonas')
105
161
  expect(@session).not_to have_no_field('First Name', with: 'Jonas')
106
162
  end
107
163
 
108
- it "should be true after the field has been filled in with a different value" do
164
+ it 'should be true after the field has been filled in with a different value' do
109
165
  @session.fill_in('First Name', with: 'Jonas')
110
166
  expect(@session).to have_no_field('First Name', with: 'John')
111
167
  end
112
168
  end
113
169
 
114
170
  context 'with type' do
115
- it "should be false if a field with the given type is on the page" do
171
+ it 'should be false if a field with the given type is on the page' do
116
172
  expect(@session).not_to have_no_field('First Name', type: 'text')
117
173
  expect(@session).not_to have_no_field('Html5 Email', type: 'email')
118
174
  expect(@session).not_to have_no_field('Html5 Tel', type: 'tel')
@@ -120,7 +176,7 @@ Capybara::SpecHelper.spec '#has_no_field' do
120
176
  expect(@session).not_to have_no_field('Languages', type: 'select')
121
177
  end
122
178
 
123
- it "should be true if the given field is not on the page" do
179
+ it 'should be true if the given field is not on the page' do
124
180
  expect(@session).to have_no_field('First Name', type: 'textarea')
125
181
  expect(@session).to have_no_field('Html5 Email', type: 'tel')
126
182
  expect(@session).to have_no_field('Description', type: '')
@@ -133,56 +189,56 @@ end
133
189
  Capybara::SpecHelper.spec '#has_checked_field?' do
134
190
  before { @session.visit('/form') }
135
191
 
136
- it "should be true if a checked field is on the page" do
192
+ it 'should be true if a checked field is on the page' do
137
193
  expect(@session).to have_checked_field('gender_female')
138
194
  expect(@session).to have_checked_field('Hamster')
139
195
  end
140
196
 
141
- it "should be true for disabled checkboxes if disabled: true" do
197
+ it 'should be true for disabled checkboxes if disabled: true' do
142
198
  expect(@session).to have_checked_field('Disabled Checkbox', disabled: true)
143
199
  end
144
200
 
145
- it "should be false if an unchecked field is on the page" do
201
+ it 'should be false if an unchecked field is on the page' do
146
202
  expect(@session).not_to have_checked_field('form_pets_cat')
147
203
  expect(@session).not_to have_checked_field('Male')
148
204
  end
149
205
 
150
- it "should be false if no field is on the page" do
206
+ it 'should be false if no field is on the page' do
151
207
  expect(@session).not_to have_checked_field('Does Not Exist')
152
208
  end
153
209
 
154
- it "should be false for disabled checkboxes by default" do
210
+ it 'should be false for disabled checkboxes by default' do
155
211
  expect(@session).not_to have_checked_field('Disabled Checkbox')
156
212
  end
157
213
 
158
- it "should be false for disabled checkboxes if disabled: false" do
214
+ it 'should be false for disabled checkboxes if disabled: false' do
159
215
  expect(@session).not_to have_checked_field('Disabled Checkbox', disabled: false)
160
216
  end
161
217
 
162
- it "should be true for disabled checkboxes if disabled: :all" do
218
+ it 'should be true for disabled checkboxes if disabled: :all' do
163
219
  expect(@session).to have_checked_field('Disabled Checkbox', disabled: :all)
164
220
  end
165
221
 
166
- it "should be true for enabled checkboxes if disabled: :all" do
222
+ it 'should be true for enabled checkboxes if disabled: :all' do
167
223
  expect(@session).to have_checked_field('gender_female', disabled: :all)
168
224
  end
169
225
 
170
- it "should be true after an unchecked checkbox is checked" do
226
+ it 'should be true after an unchecked checkbox is checked' do
171
227
  @session.check('form_pets_cat')
172
228
  expect(@session).to have_checked_field('form_pets_cat')
173
229
  end
174
230
 
175
- it "should be false after a checked checkbox is unchecked" do
231
+ it 'should be false after a checked checkbox is unchecked' do
176
232
  @session.uncheck('form_pets_dog')
177
233
  expect(@session).not_to have_checked_field('form_pets_dog')
178
234
  end
179
235
 
180
- it "should be true after an unchecked radio button is chosen" do
236
+ it 'should be true after an unchecked radio button is chosen' do
181
237
  @session.choose('gender_male')
182
238
  expect(@session).to have_checked_field('gender_male')
183
239
  end
184
240
 
185
- it "should be false after another radio button in the group is chosen" do
241
+ it 'should be false after another radio button in the group is chosen' do
186
242
  @session.choose('gender_male')
187
243
  expect(@session).not_to have_checked_field('gender_female')
188
244
  end
@@ -191,29 +247,29 @@ end
191
247
  Capybara::SpecHelper.spec '#has_no_checked_field?' do
192
248
  before { @session.visit('/form') }
193
249
 
194
- it "should be false if a checked field is on the page" do
250
+ it 'should be false if a checked field is on the page' do
195
251
  expect(@session).not_to have_no_checked_field('gender_female')
196
252
  expect(@session).not_to have_no_checked_field('Hamster')
197
253
  end
198
254
 
199
- it "should be false for disabled checkboxes if disabled: true" do
255
+ it 'should be false for disabled checkboxes if disabled: true' do
200
256
  expect(@session).not_to have_no_checked_field('Disabled Checkbox', disabled: true)
201
257
  end
202
258
 
203
- it "should be true if an unchecked field is on the page" do
259
+ it 'should be true if an unchecked field is on the page' do
204
260
  expect(@session).to have_no_checked_field('form_pets_cat')
205
261
  expect(@session).to have_no_checked_field('Male')
206
262
  end
207
263
 
208
- it "should be true if no field is on the page" do
264
+ it 'should be true if no field is on the page' do
209
265
  expect(@session).to have_no_checked_field('Does Not Exist')
210
266
  end
211
267
 
212
- it "should be true for disabled checkboxes by default" do
268
+ it 'should be true for disabled checkboxes by default' do
213
269
  expect(@session).to have_no_checked_field('Disabled Checkbox')
214
270
  end
215
271
 
216
- it "should be true for disabled checkboxes if disabled: false" do
272
+ it 'should be true for disabled checkboxes if disabled: false' do
217
273
  expect(@session).to have_no_checked_field('Disabled Checkbox', disabled: false)
218
274
  end
219
275
  end
@@ -221,89 +277,89 @@ end
221
277
  Capybara::SpecHelper.spec '#has_unchecked_field?' do
222
278
  before { @session.visit('/form') }
223
279
 
224
- it "should be false if a checked field is on the page" do
280
+ it 'should be false if a checked field is on the page' do
225
281
  expect(@session).not_to have_unchecked_field('gender_female')
226
282
  expect(@session).not_to have_unchecked_field('Hamster')
227
283
  end
228
284
 
229
- it "should be true if an unchecked field is on the page" do
285
+ it 'should be true if an unchecked field is on the page' do
230
286
  expect(@session).to have_unchecked_field('form_pets_cat')
231
287
  expect(@session).to have_unchecked_field('Male')
232
288
  end
233
289
 
234
- it "should be true for disabled unchecked fields if disabled: true" do
290
+ it 'should be true for disabled unchecked fields if disabled: true' do
235
291
  expect(@session).to have_unchecked_field('Disabled Unchecked Checkbox', disabled: true)
236
292
  end
237
293
 
238
- it "should be false if no field is on the page" do
294
+ it 'should be false if no field is on the page' do
239
295
  expect(@session).not_to have_unchecked_field('Does Not Exist')
240
296
  end
241
297
 
242
- it "should be false for disabled unchecked fields by default" do
298
+ it 'should be false for disabled unchecked fields by default' do
243
299
  expect(@session).not_to have_unchecked_field('Disabled Unchecked Checkbox')
244
300
  end
245
301
 
246
- it "should be false for disabled unchecked fields if disabled: false" do
302
+ it 'should be false for disabled unchecked fields if disabled: false' do
247
303
  expect(@session).not_to have_unchecked_field('Disabled Unchecked Checkbox', disabled: false)
248
304
  end
249
305
 
250
- it "should be false after an unchecked checkbox is checked" do
306
+ it 'should be false after an unchecked checkbox is checked' do
251
307
  @session.check('form_pets_cat')
252
308
  expect(@session).not_to have_unchecked_field('form_pets_cat')
253
309
  end
254
310
 
255
- it "should be true after a checked checkbox is unchecked" do
311
+ it 'should be true after a checked checkbox is unchecked' do
256
312
  @session.uncheck('form_pets_dog')
257
313
  expect(@session).to have_unchecked_field('form_pets_dog')
258
314
  end
259
315
 
260
- it "should be false after an unchecked radio button is chosen" do
316
+ it 'should be false after an unchecked radio button is chosen' do
261
317
  @session.choose('gender_male')
262
318
  expect(@session).not_to have_unchecked_field('gender_male')
263
319
  end
264
320
 
265
- it "should be true after another radio button in the group is chosen" do
321
+ it 'should be true after another radio button in the group is chosen' do
266
322
  @session.choose('gender_male')
267
323
  expect(@session).to have_unchecked_field('gender_female')
268
324
  end
269
325
 
270
- it "should support locator-less usage" do
271
- expect(@session.has_unchecked_field?(disabled: true, id: "form_disabled_unchecked_checkbox"))
272
- expect(@session).to have_unchecked_field(disabled: true, id: "form_disabled_unchecked_checkbox" )
326
+ it 'should support locator-less usage' do
327
+ expect(@session.has_unchecked_field?(disabled: true, id: 'form_disabled_unchecked_checkbox')).to be true
328
+ expect(@session).to have_unchecked_field(disabled: true, id: 'form_disabled_unchecked_checkbox')
273
329
  end
274
330
  end
275
331
 
276
332
  Capybara::SpecHelper.spec '#has_no_unchecked_field?' do
277
333
  before { @session.visit('/form') }
278
334
 
279
- it "should be true if a checked field is on the page" do
335
+ it 'should be true if a checked field is on the page' do
280
336
  expect(@session).to have_no_unchecked_field('gender_female')
281
337
  expect(@session).to have_no_unchecked_field('Hamster')
282
338
  end
283
339
 
284
- it "should be false if an unchecked field is on the page" do
340
+ it 'should be false if an unchecked field is on the page' do
285
341
  expect(@session).not_to have_no_unchecked_field('form_pets_cat')
286
342
  expect(@session).not_to have_no_unchecked_field('Male')
287
343
  end
288
344
 
289
- it "should be false for disabled unchecked fields if disabled: true" do
345
+ it 'should be false for disabled unchecked fields if disabled: true' do
290
346
  expect(@session).not_to have_no_unchecked_field('Disabled Unchecked Checkbox', disabled: true)
291
347
  end
292
348
 
293
- it "should be true if no field is on the page" do
349
+ it 'should be true if no field is on the page' do
294
350
  expect(@session).to have_no_unchecked_field('Does Not Exist')
295
351
  end
296
352
 
297
- it "should be true for disabled unchecked fields by default" do
353
+ it 'should be true for disabled unchecked fields by default' do
298
354
  expect(@session).to have_no_unchecked_field('Disabled Unchecked Checkbox')
299
355
  end
300
356
 
301
- it "should be true for disabled unchecked fields if disabled: false" do
357
+ it 'should be true for disabled unchecked fields if disabled: false' do
302
358
  expect(@session).to have_no_unchecked_field('Disabled Unchecked Checkbox', disabled: false)
303
359
  end
304
360
 
305
- it "should support locator-less usage" do
306
- expect(@session.has_no_unchecked_field?(disabled: false, id: "form_disabled_unchecked_checkbox")).to eq true
307
- expect(@session).to have_no_unchecked_field(disabled: false, id: "form_disabled_unchecked_checkbox" )
361
+ it 'should support locator-less usage' do
362
+ expect(@session.has_no_unchecked_field?(disabled: false, id: 'form_disabled_unchecked_checkbox')).to eq true
363
+ expect(@session).to have_no_unchecked_field(disabled: false, id: 'form_disabled_unchecked_checkbox')
308
364
  end
309
365
  end