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,12 +1,13 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  require 'spec_helper'
3
4
  require 'selenium-webdriver'
4
5
 
5
6
  RSpec.describe Capybara::Selenium::Driver do
6
- it "should exit with a non-zero exit status" do
7
+ it 'should exit with a non-zero exit status' do
7
8
  options = { browser: (ENV['SELENIUM_BROWSER'] || :firefox).to_sym }
8
- options[:desired_capabilities] = Selenium::WebDriver::Remote::Capabilities.firefox(marionette: false) if ENV['LEGACY_FIREFOX']
9
- browser = Capybara::Selenium::Driver.new(TestApp, options).browser
10
- expect(true).to eq(false)
9
+ browser = described_class.new(TestApp, options).browser
10
+ expect(browser).to be_truthy
11
+ expect(true).to eq(false) # rubocop:disable RSpec/ExpectActual
11
12
  end
12
13
  end
@@ -1,12 +1,13 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  require 'spec_helper'
3
4
  require 'selenium-webdriver'
4
5
 
5
6
  RSpec.describe Capybara::Selenium::Driver do
6
- it "should exit with a zero exit status" do
7
+ it 'should exit with a zero exit status' do
7
8
  options = { browser: (ENV['SELENIUM_BROWSER'] || :firefox).to_sym }
8
- options[:desired_capabilities] = Selenium::WebDriver::Remote::Capabilities.firefox(marionette: false) if ENV['LEGACY_FIREFOX']
9
- browser = Capybara::Selenium::Driver.new(TestApp, options ).browser
10
- expect(true).to eq(true)
9
+ browser = described_class.new(TestApp, **options).browser
10
+ expect(browser).to be_truthy
11
+ expect(true).to eq(true) # rubocop:disable RSpec/ExpectActual
11
12
  end
12
13
  end
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  require 'spec_helper'
3
4
  require 'capybara/minitest'
4
5
 
@@ -15,7 +16,7 @@ class MinitestTest < Minitest::Test
15
16
  end
16
17
 
17
18
  def test_assert_text
18
- assert_text('Form')
19
+ assert_text('Form', normalize_ws: false)
19
20
  assert_no_text('Not on the page')
20
21
  refute_text('Also Not on the page')
21
22
  end
@@ -29,15 +30,16 @@ class MinitestTest < Minitest::Test
29
30
 
30
31
  def test_assert_current_path
31
32
  assert_current_path('/form')
33
+ assert_current_path('/form') { |url| url.query.nil? }
32
34
  assert_no_current_path('/not_form')
33
35
  refute_current_path('/not_form')
34
36
  end
35
37
 
36
38
  def test_assert_xpath
37
39
  assert_xpath('.//select[@id="form_title"]')
38
- assert_xpath('.//select', count: 1) { |el| el[:id] == "form_title" }
40
+ assert_xpath('.//select', count: 1) { |el| el[:id] == 'form_title' }
39
41
  assert_no_xpath('.//select[@id="not_form_title"]')
40
- assert_no_xpath('.//select') { |el| el[:id] == "not_form_title"}
42
+ assert_no_xpath('.//select') { |el| el[:id] == 'not_form_title' }
41
43
  refute_xpath('.//select[@id="not_form_title"]')
42
44
  end
43
45
 
@@ -46,16 +48,24 @@ class MinitestTest < Minitest::Test
46
48
  assert_no_css('select#not_form_title')
47
49
  end
48
50
 
51
+ def test_assert_selector
52
+ assert_selector(:css, 'select#form_title')
53
+ assert_selector(:xpath, './/select[@id="form_title"]')
54
+ assert_no_selector(:css, 'select#not_form_title')
55
+ assert_no_selector(:xpath, './/select[@id="not_form_title"]')
56
+ refute_selector(:css, 'select#not_form_title')
57
+ end
58
+
49
59
  def test_assert_link
50
60
  visit('/with_html')
51
61
  assert_link('A link')
52
- assert_link(count: 1){ |el| el.text == 'A link'}
62
+ assert_link(count: 1) { |el| el.text == 'A link' }
53
63
  assert_no_link('Not on page')
54
64
  end
55
65
 
56
66
  def test_assert_button
57
67
  assert_button('fresh_btn')
58
- assert_button(count: 1){ |el| el[:id] == 'fresh_btn' }
68
+ assert_button(count: 1) { |el| el[:id] == 'fresh_btn' }
59
69
  assert_no_button('not_btn')
60
70
  end
61
71
 
@@ -88,6 +98,18 @@ class MinitestTest < Minitest::Test
88
98
  refute_table('not_on_form')
89
99
  end
90
100
 
101
+ def test_assert_all_of_selectors
102
+ assert_all_of_selectors(:css, 'select#form_other_title', 'input#form_last_name')
103
+ end
104
+
105
+ def test_assert_none_of_selectors
106
+ assert_none_of_selectors(:css, 'input#not_on_page', 'input#also_not_on_page')
107
+ end
108
+
109
+ def test_assert_any_of_selectors
110
+ assert_any_of_selectors(:css, 'input#not_on_page', 'select#form_other_title')
111
+ end
112
+
91
113
  def test_assert_matches_selector
92
114
  assert_matches_selector(find(:field, 'customer_email'), :field, 'customer_email')
93
115
  assert_not_matches_selector(find(:select, 'form_title'), :field, 'customer_email')
@@ -103,6 +125,22 @@ class MinitestTest < Minitest::Test
103
125
  assert_matches_xpath(find(:select, 'form_title'), './/select[@id="form_title"]')
104
126
  refute_matches_xpath(find(:select, 'form_title'), './/select[@id="form_other_title"]')
105
127
  end
128
+
129
+ def test_assert_matches_style
130
+ skip "Rack test doesn't support style" if Capybara.current_driver == :rack_test
131
+ visit('/with_html')
132
+ assert_matches_style(find(:css, '#second'), display: 'inline')
133
+ end
134
+
135
+ def test_assert_ancestor
136
+ option = find(:option, 'Finnish')
137
+ assert_ancestor(option, :css, '#form_locale')
138
+ end
139
+
140
+ def test_assert_sibling
141
+ option = find(:css, '#form_title').find(:option, 'Mrs')
142
+ assert_sibling(option, :option, 'Mr')
143
+ end
106
144
  end
107
145
 
108
146
  RSpec.describe 'capybara/minitest' do
@@ -111,12 +149,16 @@ RSpec.describe 'capybara/minitest' do
111
149
  Capybara.app = TestApp
112
150
  end
113
151
 
114
- it "should support minitest" do
152
+ after do
153
+ Capybara.use_default_driver
154
+ end
155
+
156
+ it 'should support minitest' do
115
157
  output = StringIO.new
116
158
  reporter = Minitest::SummaryReporter.new(output)
117
159
  reporter.start
118
160
  MinitestTest.run reporter, {}
119
161
  reporter.report
120
- expect(output.string).to include("15 runs, 42 assertions, 0 failures, 0 errors, 0 skips")
162
+ expect(output.string).to include('22 runs, 53 assertions, 0 failures, 0 errors, 1 skips')
121
163
  end
122
164
  end
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  require 'spec_helper'
3
4
  require 'capybara/minitest'
4
5
  require 'capybara/minitest/spec'
@@ -10,101 +11,131 @@ class MinitestSpecTest < Minitest::Spec
10
11
  before do
11
12
  visit('/form')
12
13
  end
14
+
13
15
  after do
14
16
  Capybara.reset_sessions!
15
17
  end
16
18
 
17
- it "supports text expectations" do
18
- page.must_have_text('Form', minimum: 1)
19
- page.wont_have_text('Not a form')
19
+ it 'supports text expectations' do
20
+ _(page).must_have_text('Form', minimum: 1)
21
+ _(page).wont_have_text('Not a form')
20
22
  form = find(:css, 'form', text: 'Title')
21
- form.must_have_text('Customer Email')
22
- form.wont_have_text('Some other email')
23
+ _(form).must_have_text('Customer Email')
24
+ _(form).wont_have_text('Some other email')
23
25
  end
24
26
 
25
- it "supports current_path expectations" do
26
- page.must_have_current_path('/form')
27
- page.wont_have_current_path('/form2')
27
+ it 'supports current_path expectations' do
28
+ _(page).must_have_current_path('/form')
29
+ _(page).wont_have_current_path('/form2')
28
30
  end
29
31
 
30
- it "supports title expectations" do
32
+ it 'supports title expectations' do
31
33
  visit('/with_title')
32
- page.must_have_title('Test Title')
33
- page.wont_have_title('Not the title')
34
+ _(page).must_have_title('Test Title')
35
+ _(page).wont_have_title('Not the title')
34
36
  end
35
37
 
36
- it "supports xpath expectations" do
37
- page.must_have_xpath('.//input[@id="customer_email"]')
38
- page.wont_have_xpath('.//select[@id="not_form_title"]')
39
- page.wont_have_xpath('.//input[@id="customer_email"]') { |el| el[:id] == "not_customer_email" }
38
+ it 'supports xpath expectations' do
39
+ _(page).must_have_xpath('.//input[@id="customer_email"]')
40
+ _(page).wont_have_xpath('.//select[@id="not_form_title"]')
41
+ _(page).wont_have_xpath('.//input[@id="customer_email"]') { |el| el[:id] == 'not_customer_email' }
40
42
  select = find(:select, 'form_title')
41
- select.must_have_xpath('.//option[@class="title"]')
42
- select.must_have_xpath('.//option', count: 1) { |option| option[:class] != 'title' && !option.disabled?}
43
- select.wont_have_xpath('.//input[@id="customer_email"]')
43
+ _(select).must_have_xpath('.//option[@class="title"]')
44
+ _(select).must_have_xpath('.//option', count: 1) { |option| option[:class] != 'title' && !option.disabled? }
45
+ _(select).wont_have_xpath('.//input[@id="customer_email"]')
44
46
  end
45
47
 
46
- it "support css expectations" do
47
- page.must_have_css('input#customer_email')
48
- page.wont_have_css('select#not_form_title')
48
+ it 'support css expectations' do
49
+ _(page).must_have_css('input#customer_email')
50
+ _(page).wont_have_css('select#not_form_title')
49
51
  el = find(:select, 'form_title')
50
- el.must_have_css('option.title')
51
- el.wont_have_css('input#customer_email')
52
+ _(el).must_have_css('option.title')
53
+ _(el).wont_have_css('input#customer_email')
52
54
  end
53
55
 
54
- it "supports link expectations" do
56
+ it 'supports link expectations' do
55
57
  visit('/with_html')
56
- page.must_have_link('A link')
57
- page.wont_have_link('Not on page')
58
+ _(page).must_have_link('A link')
59
+ _(page).wont_have_link('Not on page')
58
60
  end
59
61
 
60
- it "supports button expectations" do
61
- page.must_have_button('fresh_btn')
62
- page.wont_have_button('not_btn')
62
+ it 'supports button expectations' do
63
+ _(page).must_have_button('fresh_btn')
64
+ _(page).wont_have_button('not_btn')
63
65
  end
64
66
 
65
- it "supports field expectations" do
66
- page.must_have_field('customer_email')
67
- page.wont_have_field('not_on_the_form')
67
+ it 'supports field expectations' do
68
+ _(page).must_have_field('customer_email')
69
+ _(page).wont_have_field('not_on_the_form')
68
70
  end
69
71
 
70
- it "supports select expectations" do
71
- page.must_have_select('form_title')
72
- page.wont_have_select('not_form_title')
72
+ it 'supports select expectations' do
73
+ _(page).must_have_select('form_title')
74
+ _(page).wont_have_select('not_form_title')
73
75
  end
74
76
 
75
- it "supports checked_field expectations" do
76
- page.must_have_checked_field('form_pets_dog')
77
- page.wont_have_checked_field('form_pets_cat')
77
+ it 'supports checked_field expectations' do
78
+ _(page).must_have_checked_field('form_pets_dog')
79
+ _(page).wont_have_checked_field('form_pets_cat')
78
80
  end
79
81
 
80
- it "supports unchecked_field expectations" do
81
- page.must_have_unchecked_field('form_pets_cat')
82
- page.wont_have_unchecked_field('form_pets_dog')
82
+ it 'supports unchecked_field expectations' do
83
+ _(page).must_have_unchecked_field('form_pets_cat')
84
+ _(page).wont_have_unchecked_field('form_pets_dog')
83
85
  end
84
86
 
85
- it "supports table expectations" do
87
+ it 'supports table expectations' do
86
88
  visit('/tables')
87
- page.must_have_table('agent_table')
88
- page.wont_have_table('not_on_form')
89
+ _(page).must_have_table('agent_table')
90
+ _(page).wont_have_table('not_on_form')
91
+ end
92
+
93
+ it 'supports all_of_selectors expectations' do
94
+ _(page).must_have_all_of_selectors(:css, 'select#form_other_title', 'input#form_last_name')
95
+ end
96
+
97
+ it 'supports none_of_selectors expectations' do
98
+ _(page).must_have_none_of_selectors(:css, 'input#not_on_page', 'input#also_not_on_page')
99
+ end
100
+
101
+ it 'supports any_of_selectors expectations' do
102
+ _(page).must_have_any_of_selectors(:css, 'select#form_other_title', 'input#not_on_page')
103
+ end
104
+
105
+ it 'supports match_selector expectations' do
106
+ _(find(:field, 'customer_email')).must_match_selector(:field, 'customer_email')
107
+ _(find(:select, 'form_title')).wont_match_selector(:field, 'customer_email')
89
108
  end
90
109
 
91
- it "supports match_selector expectations" do
92
- find(:field, 'customer_email').must_match_selector(:field, 'customer_email')
93
- find(:select, 'form_title').wont_match_selector(:field, 'customer_email')
110
+ it 'supports match_css expectations' do
111
+ _(find(:select, 'form_title')).must_match_css('select#form_title')
112
+ _(find(:select, 'form_title')).wont_match_css('select#form_other_title')
94
113
  end
95
114
 
96
- it "supports match_css expectations" do
97
- find(:select, 'form_title').must_match_css('select#form_title')
98
- find(:select, 'form_title').wont_match_css('select#form_other_title')
115
+ it 'supports match_xpath expectations' do
116
+ _(find(:select, 'form_title')).must_match_xpath('.//select[@id="form_title"]')
117
+ _(find(:select, 'form_title')).wont_match_xpath('.//select[@id="not_on_page"]')
99
118
  end
100
119
 
101
- it "supports match_xpath expectations" do
102
- find(:select, 'form_title').must_match_xpath('.//select[@id="form_title"]')
103
- find(:select, 'form_title').wont_match_xpath('.//select[@id="not_on_page"]')
120
+ it 'handles failures' do
121
+ _(page).must_have_select('non_existing_form_title')
104
122
  end
105
123
 
106
- it "handles failures" do
107
- page.must_have_select('non_existing_form_title')
124
+ it 'supports style expectations' do
125
+ skip "Rack test doesn't support style" if Capybara.current_driver == :rack_test
126
+ visit('/with_html')
127
+ _(find(:css, '#second')).must_have_style('display' => 'inline') # deprecated
128
+ _(find(:css, '#second')).must_match_style('display' => 'inline')
129
+ end
130
+
131
+ it 'supports ancestor expectations' do
132
+ option = find(:option, 'Finnish')
133
+ _(option).must_have_ancestor(:css, '#form_locale')
134
+ end
135
+
136
+ it 'supports sibling expectations' do
137
+ option = find(:css, '#form_title').find(:option, 'Mrs')
138
+ _(option).must_have_sibling(:option, 'Mr')
108
139
  end
109
140
  end
110
141
 
@@ -114,14 +145,18 @@ RSpec.describe 'capybara/minitest/spec' do
114
145
  Capybara.app = TestApp
115
146
  end
116
147
 
117
- it "should support minitest spec" do
148
+ after do
149
+ Capybara.use_default_driver
150
+ end
151
+
152
+ it 'should support minitest spec' do
118
153
  output = StringIO.new
119
154
  reporter = Minitest::SummaryReporter.new(output)
120
155
  reporter.start
121
156
  MinitestSpecTest.run reporter, {}
122
157
  reporter.report
123
- expect(output.string).to include("16 runs, 39 assertions, 1 failures, 0 errors, 0 skips")
124
- #Make sure error messages are displayed
125
- expect(output.string).to include('expected to find visible select box "non_existing_form_title" that is not disabled but there were no matches')
158
+ expect(output.string).to include('22 runs, 44 assertions, 1 failures, 0 errors, 1 skips')
159
+ # Make sure error messages are displayed
160
+ expect(output.string).to match(/expected to find select box "non_existing_form_title" .*but there were no matches/)
126
161
  end
127
162
  end
@@ -1,24 +1,25 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  require 'spec_helper'
3
4
  require 'capybara/dsl'
4
5
 
5
6
  RSpec.describe Capybara::SessionConfig do
6
- describe "threadsafe" do
7
- it "defaults to global session options" do
7
+ describe 'threadsafe' do
8
+ it 'defaults to global session options' do
8
9
  Capybara.threadsafe = true
9
10
  session = Capybara::Session.new(:rack_test, TestApp)
10
- [:default_host, :app_host, :save_and_open_page_path,
11
- :always_include_port, :run_server, :default_selector, :default_max_wait_time, :ignore_hidden_elements,
12
- :automatic_reload, :match, :exact, :raise_server_errors, :visible_text_only, :wait_on_first_by_default,
13
- :automatic_label_click, :enable_aria_label,
14
- :save_path, :exact_options, :asset_host].each do |m|
15
- expect(session.config.public_send(m)).to eq Capybara.public_send(m)
16
- end
11
+ %i[default_host app_host always_include_port run_server
12
+ default_selector default_max_wait_time ignore_hidden_elements
13
+ automatic_reload match exact raise_server_errors visible_text_only
14
+ automatic_label_click enable_aria_label save_path
15
+ asset_host].each do |m|
16
+ expect(session.config.public_send(m)).to eq Capybara.public_send(m)
17
+ end
17
18
  end
18
19
 
19
20
  it "doesn't change global session when changed" do
20
21
  Capybara.threadsafe = true
21
- host = "http://my.example.com"
22
+ host = 'http://my.example.com'
22
23
  session = Capybara::Session.new(:rack_test, TestApp) do |config|
23
24
  config.default_host = host
24
25
  config.automatic_label_click = !config.automatic_label_click
@@ -34,7 +35,7 @@ RSpec.describe Capybara::SessionConfig do
34
35
  Capybara.threadsafe = false
35
36
  expect do
36
37
  Capybara::Session.new(:rack_test, TestApp) { |config| }
37
- end.to raise_error "A configuration block is only accepted when Capybara.threadsafe == true"
38
+ end.to raise_error 'A configuration block is only accepted when Capybara.threadsafe == true'
38
39
  end
39
40
 
40
41
  it "doesn't allow session config when false" do
@@ -48,7 +49,7 @@ RSpec.describe Capybara::SessionConfig do
48
49
  end.to raise_error(/Session configuration is only supported when Capybara.threadsafe == true/)
49
50
  end
50
51
 
51
- it "uses the config from the session" do
52
+ it 'uses the config from the session' do
52
53
  Capybara.threadsafe = true
53
54
  session = Capybara::Session.new(:rack_test, TestApp) do |config|
54
55
  config.default_selector = :link
@@ -64,4 +65,4 @@ RSpec.describe Capybara::SessionConfig do
64
65
  expect { Capybara.threadsafe = true }.to raise_error(/Threadsafe setting cannot be changed once a session is created/)
65
66
  end
66
67
  end
67
- end
68
+ end
@@ -1,228 +1,279 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  require 'spec_helper'
4
+ nokogumbo_required = begin
5
+ require 'nokogumbo'
6
+ true
7
+ rescue LoadError
8
+ false
9
+ end
3
10
 
4
11
  module TestSessions
5
12
  RackTest = Capybara::Session.new(:rack_test, TestApp)
6
13
  end
7
14
 
8
- Capybara::SpecHelper.run_specs TestSessions::RackTest, "RackTest", capybara_skip: [
9
- :js,
10
- :modals,
11
- :screenshot,
12
- :frames,
13
- :windows,
14
- :send_keys,
15
- :server,
16
- :hover,
17
- :about_scheme,
15
+ skipped_tests = %i[
16
+ js
17
+ modals
18
+ screenshot
19
+ frames
20
+ windows
21
+ send_keys
22
+ server
23
+ hover
24
+ about_scheme
25
+ download
26
+ css
27
+ scroll
28
+ spatial
29
+ html_validation
30
+ shadow_dom
18
31
  ]
32
+ Capybara::SpecHelper.run_specs TestSessions::RackTest, 'RackTest', capybara_skip: skipped_tests do |example|
33
+ case example.metadata[:full_description]
34
+ when /has_css\? should support case insensitive :class and :id options/
35
+ skip "Nokogiri doesn't support case insensitive CSS attribute matchers"
36
+ when /#click_button should follow permanent redirects that maintain method/
37
+ skip "Rack < 2 doesn't support 308" if Gem.loaded_specs['rack'].version < Gem::Version.new('2.0.0')
38
+ end
39
+ end
19
40
 
20
- RSpec.describe Capybara::Session do
41
+ RSpec.describe Capybara::Session do # rubocop:disable RSpec/MultipleDescribes
42
+ include Capybara::RSpecMatchers
21
43
  context 'with rack test driver' do
22
- before do
23
- @session = TestSessions::RackTest
24
- end
44
+ let(:session) { TestSessions::RackTest }
25
45
 
26
46
  describe '#driver' do
27
- it "should be a rack test driver" do
28
- expect(@session.driver).to be_an_instance_of(Capybara::RackTest::Driver)
47
+ it 'should be a rack test driver' do
48
+ expect(session.driver).to be_an_instance_of(Capybara::RackTest::Driver)
29
49
  end
30
50
  end
31
51
 
32
52
  describe '#mode' do
33
- it "should remember the mode" do
34
- expect(@session.mode).to eq(:rack_test)
53
+ it 'should remember the mode' do
54
+ expect(session.mode).to eq(:rack_test)
35
55
  end
36
56
  end
37
57
 
38
58
  describe '#click_link' do
39
- it "should use data-method if option is true" do
40
- @session.driver.options[:respect_data_method] = true
41
- @session.visit "/with_html"
42
- @session.click_link "A link with data-method"
43
- expect(@session.html).to include('The requested object was deleted')
59
+ after do
60
+ session.driver.options[:respect_data_method] = false
44
61
  end
45
62
 
46
- it "should not use data-method if option is false" do
47
- @session.driver.options[:respect_data_method] = false
48
- @session.visit "/with_html"
49
- @session.click_link "A link with data-method"
50
- expect(@session.html).to include('Not deleted')
63
+ it 'should use data-method if option is true' do
64
+ session.driver.options[:respect_data_method] = true
65
+ session.visit '/with_html'
66
+ session.click_link 'A link with data-method'
67
+ expect(session.html).to include('The requested object was deleted')
51
68
  end
52
69
 
53
- it "should use data-method if available even if it's capitalized" do
54
- @session.driver.options[:respect_data_method] = true
55
- @session.visit "/with_html"
56
- @session.click_link "A link with capitalized data-method"
57
- expect(@session.html).to include('The requested object was deleted')
70
+ it 'should not use data-method if option is false' do
71
+ session.driver.options[:respect_data_method] = false
72
+ session.visit '/with_html'
73
+ session.click_link 'A link with data-method'
74
+ expect(session.html).to include('Not deleted')
58
75
  end
59
76
 
60
- after do
61
- @session.driver.options[:respect_data_method] = false
77
+ it "should use data-method if available even if it's capitalized" do
78
+ session.driver.options[:respect_data_method] = true
79
+ session.visit '/with_html'
80
+ session.click_link 'A link with capitalized data-method'
81
+ expect(session.html).to include('The requested object was deleted')
62
82
  end
63
83
  end
64
84
 
65
- describe "#fill_in" do
66
- it "should warn that :fill_options are not supported" do
67
- expect_any_instance_of(Capybara::Node::Element).to receive(:warn)
68
- .with("Options passed to Capybara::Node#set but the driver doesn't support them")
69
- @session.visit "/with_html"
70
- @session.fill_in 'test_field', with: 'not_moneky', fill_options: { random: true }
85
+ describe '#fill_in' do
86
+ it 'should warn that :fill_options are not supported' do
87
+ session.visit '/with_html'
88
+ expect { session.fill_in 'test_field', with: 'not_monkey', fill_options: { random: true } }.to \
89
+ output(/^Options passed to Node#set but the RackTest driver doesn't support any - ignoring/).to_stderr
90
+ expect(session).to have_field('test_field', with: 'not_monkey')
71
91
  end
72
92
  end
73
93
 
74
- describe "#attach_file" do
75
- context "with multipart form" do
76
- it "should submit an empty form-data section if no file is submitted" do
77
- @session.visit("/form")
78
- @session.click_button("Upload Empty")
79
- expect(@session.html).to include('Successfully ignored empty file field.')
94
+ describe '#attach_file' do
95
+ context 'with multipart form' do
96
+ it 'should submit an empty form-data section if no file is submitted' do
97
+ session.visit('/form')
98
+ session.click_button('Upload Empty')
99
+ expect(session.html).to include('Successfully ignored empty file field.')
80
100
  end
81
101
  end
82
102
 
83
- it "should not submit an obsolete mime type" do
84
- @test_jpg_file_path = File.expand_path('fixtures/capybara.csv', File.dirname(__FILE__))
85
- @session.visit("/form")
86
- @session.attach_file "form_document", @test_jpg_file_path
87
- @session.click_button('Upload Single')
88
- expect(@session).to have_content("Content-type: text/csv")
103
+ it 'should not submit an obsolete mime type' do
104
+ test_jpg_file_path = File.expand_path('fixtures/capybara.csv', File.dirname(__FILE__))
105
+ session.visit('/form')
106
+ session.attach_file 'form_document', test_jpg_file_path
107
+ session.click_button('Upload Single')
108
+ expect(session).to have_content('Content-type: text/csv')
89
109
  end
90
110
  end
91
111
 
92
- describe "#click" do
93
- context "on a label" do
94
- it "should toggle the associated checkbox" do
95
- @session.visit("/form")
96
- expect(@session).to have_unchecked_field('form_pets_cat')
97
- @session.find(:label, 'Cat').click
98
- expect(@session).to have_checked_field('form_pets_cat')
99
- @session.find(:label, 'Cat').click
100
- expect(@session).to have_unchecked_field('form_pets_cat')
101
- @session.find(:label, 'McLaren').click
102
- expect(@session).to have_checked_field('form_cars_mclaren', visible: :hidden)
112
+ describe '#click' do
113
+ context 'on a label' do
114
+ it 'should toggle the associated checkbox' do
115
+ session.visit('/form')
116
+ expect(session).to have_unchecked_field('form_pets_cat')
117
+ session.find(:label, 'Cat').click
118
+ expect(session).to have_checked_field('form_pets_cat')
119
+ session.find(:label, 'Cat').click
120
+ expect(session).to have_unchecked_field('form_pets_cat')
121
+ session.find(:label, 'McLaren').click
122
+ expect(session).to have_checked_field('form_cars_mclaren', visible: :hidden)
123
+ end
124
+
125
+ it 'should toggle the associated radio' do
126
+ session.visit('/form')
127
+ expect(session).to have_unchecked_field('gender_male')
128
+ session.find(:label, 'Male').click
129
+ expect(session).to have_checked_field('gender_male')
130
+ session.find(:label, 'Female').click
131
+ expect(session).to have_unchecked_field('gender_male')
103
132
  end
104
133
 
105
- it "should toggle the associated radio" do
106
- @session.visit("/form")
107
- expect(@session).to have_unchecked_field('gender_male')
108
- @session.find(:label, 'Male').click
109
- expect(@session).to have_checked_field('gender_male')
110
- @session.find(:label, 'Female').click
111
- expect(@session).to have_unchecked_field('gender_male')
134
+ it 'should rewrite the forms action query for get submission' do
135
+ session.visit('/form')
136
+ session.click_button('mediocre')
137
+ expect(session).not_to have_current_path(/foo|bar/)
112
138
  end
139
+
140
+ it 'should rewrite the submit buttons formaction query for get submission' do
141
+ session.visit('/form')
142
+ session.click_button('mediocre2')
143
+ expect(session).not_to have_current_path(/foo|bar/)
144
+ end
145
+ end
146
+ end
147
+
148
+ describe '#send_keys' do
149
+ it 'raises an UnsupportedMethodError' do
150
+ session.visit('/form')
151
+
152
+ expect { session.send_keys(:tab) }.to raise_error(Capybara::NotSupportedByDriverError)
113
153
  end
114
154
  end
115
155
 
116
156
  describe '#text' do
117
- it "should return original text content for textareas" do
118
- @session.visit('/with_html')
119
- @session.find_field('normal', type: 'textarea', with: 'banana').set('hello')
120
- normal = @session.find(:css, '#normal')
157
+ it 'should return original text content for textareas' do
158
+ session.visit('/with_html')
159
+ session.find_field('normal', type: 'textarea', with: 'banana').set('hello')
160
+ normal = session.find(:css, '#normal')
121
161
  expect(normal.value).to eq 'hello'
122
162
  expect(normal.text).to eq 'banana'
123
163
  end
124
164
  end
165
+
166
+ describe '#style' do
167
+ it 'should raise an error' do
168
+ session.visit('/with_html')
169
+ el = session.find(:css, '#first')
170
+ expect { el.style('display') }.to raise_error NotImplementedError, /not process CSS/
171
+ end
172
+ end
125
173
  end
126
174
  end
127
175
 
128
176
  RSpec.describe Capybara::RackTest::Driver do
129
- before do
130
- @driver = TestSessions::RackTest.driver
131
- end
177
+ let(:driver) { TestSessions::RackTest.driver }
132
178
 
133
179
  describe ':headers option' do
134
180
  it 'should always set headers' do
135
- @driver = Capybara::RackTest::Driver.new(TestApp, headers: {'HTTP_FOO' => 'foobar'})
136
- @driver.visit('/get_header')
137
- expect(@driver.html).to include('foobar')
181
+ driver = described_class.new(TestApp, headers: { 'HTTP_FOO' => 'foobar' })
182
+ driver.visit('/get_header')
183
+ expect(driver.html).to include('foobar')
138
184
  end
139
185
 
140
186
  it 'should keep headers on link clicks' do
141
- @driver = Capybara::RackTest::Driver.new(TestApp, headers: {'HTTP_FOO' => 'foobar'})
142
- @driver.visit('/header_links')
143
- @driver.find_xpath('.//a').first.click
144
- expect(@driver.html).to include('foobar')
187
+ driver = described_class.new(TestApp, headers: { 'HTTP_FOO' => 'foobar' })
188
+ driver.visit('/header_links')
189
+ driver.find_xpath('.//a').first.click
190
+ expect(driver.html).to include('foobar')
145
191
  end
146
192
 
147
193
  it 'should keep headers on form submit' do
148
- @driver = Capybara::RackTest::Driver.new(TestApp, headers: {'HTTP_FOO' => 'foobar'})
149
- @driver.visit('/header_links')
150
- @driver.find_xpath('.//input').first.click
151
- expect(@driver.html).to include('foobar')
194
+ driver = described_class.new(TestApp, headers: { 'HTTP_FOO' => 'foobar' })
195
+ driver.visit('/header_links')
196
+ driver.find_xpath('.//input').first.click
197
+ expect(driver.html).to include('foobar')
152
198
  end
153
199
 
154
200
  it 'should keep headers on redirects' do
155
- @driver = Capybara::RackTest::Driver.new(TestApp, headers: {'HTTP_FOO' => 'foobar'})
156
- @driver.visit('/get_header_via_redirect')
157
- expect(@driver.html).to include('foobar')
201
+ driver = described_class.new(TestApp, headers: { 'HTTP_FOO' => 'foobar' })
202
+ driver.visit('/get_header_via_redirect')
203
+ expect(driver.html).to include('foobar')
158
204
  end
159
205
  end
160
206
 
161
207
  describe ':follow_redirects option' do
162
- it "defaults to following redirects" do
163
- @driver = Capybara::RackTest::Driver.new(TestApp)
208
+ it 'defaults to following redirects' do
209
+ driver = described_class.new(TestApp)
164
210
 
165
- @driver.visit('/redirect')
166
- expect(@driver.response.header['Location']).to be_nil
167
- expect(@driver.current_url).to match %r{/landed$}
211
+ driver.visit('/redirect')
212
+ expect(driver.response.header['Location']).to be_nil
213
+ expect(driver.current_url).to match %r{/landed$}
168
214
  end
169
215
 
170
- it "is possible to not follow redirects" do
171
- @driver = Capybara::RackTest::Driver.new(TestApp, follow_redirects: false)
216
+ it 'is possible to not follow redirects' do
217
+ driver = described_class.new(TestApp, follow_redirects: false)
172
218
 
173
- @driver.visit('/redirect')
174
- expect(@driver.response.header['Location']).to match %r{/redirect_again$}
175
- expect(@driver.current_url).to match %r{/redirect$}
219
+ driver.visit('/redirect')
220
+ expect(driver.response.header['Location']).to match %r{/redirect_again$}
221
+ expect(driver.current_url).to match %r{/redirect$}
176
222
  end
177
223
  end
178
224
 
179
225
  describe ':redirect_limit option' do
180
- context "with default redirect limit" do
181
- before do
182
- @driver = Capybara::RackTest::Driver.new(TestApp)
183
- end
226
+ context 'with default redirect limit' do
227
+ let(:driver) { described_class.new(TestApp) }
184
228
 
185
- it "should follow 5 redirects" do
186
- @driver.visit("/redirect/5/times")
187
- expect(@driver.html).to include('redirection complete')
229
+ it 'should follow 5 redirects' do
230
+ driver.visit('/redirect/5/times')
231
+ expect(driver.html).to include('redirection complete')
188
232
  end
189
233
 
190
- it "should not follow more than 6 redirects" do
234
+ it 'should not follow more than 6 redirects' do
191
235
  expect do
192
- @driver.visit("/redirect/6/times")
236
+ driver.visit('/redirect/6/times')
193
237
  end.to raise_error(Capybara::InfiniteRedirectError)
194
238
  end
195
239
  end
196
240
 
197
- context "with 21 redirect limit" do
198
- before do
199
- @driver = Capybara::RackTest::Driver.new(TestApp, redirect_limit: 21)
200
- end
241
+ context 'with 21 redirect limit' do
242
+ let(:driver) { described_class.new(TestApp, redirect_limit: 21) }
201
243
 
202
- it "should follow 21 redirects" do
203
- @driver.visit("/redirect/21/times")
204
- expect(@driver.html).to include('redirection complete')
244
+ it 'should follow 21 redirects' do
245
+ driver.visit('/redirect/21/times')
246
+ expect(driver.html).to include('redirection complete')
205
247
  end
206
248
 
207
- it "should not follow more than 21 redirects" do
249
+ it 'should not follow more than 21 redirects' do
208
250
  expect do
209
- @driver.visit("/redirect/22/times")
251
+ driver.visit('/redirect/22/times')
210
252
  end.to raise_error(Capybara::InfiniteRedirectError)
211
253
  end
212
254
  end
213
255
  end
214
256
  end
215
257
 
258
+ RSpec.describe 'Capybara::String' do
259
+ it 'should use gumbo' do
260
+ skip 'Only valid if gumbo is included' unless nokogumbo_required
261
+ allow(Nokogiri).to receive(:HTML5).and_call_original
262
+ Capybara.string('<div id=test_div></div>')
263
+ expect(Nokogiri).to have_received(:HTML5)
264
+ end
265
+ end
266
+
216
267
  module CSSHandlerIncludeTester
217
268
  def dont_extend_css_handler
218
269
  raise 'should never be called'
219
270
  end
220
271
  end
221
- include CSSHandlerIncludeTester
222
272
 
223
- RSpec.describe Capybara::RackTest::CSSHandlers do
224
- it "should not be extended by global includes" do
225
- expect(Capybara::RackTest::CSSHandlers.new).not_to respond_to(:dont_extend_css_handler)
273
+ RSpec.describe Capybara::RackTest::CSSHandlers do
274
+ include CSSHandlerIncludeTester
275
+
276
+ it 'should not be extended by global includes' do
277
+ expect(described_class.new).not_to respond_to(:dont_extend_css_handler)
226
278
  end
227
279
  end
228
-