capybara 2.15.1 → 3.36.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (311) hide show
  1. checksums.yaml +5 -5
  2. data/.yardopts +1 -1
  3. data/History.md +902 -10
  4. data/License.txt +1 -1
  5. data/README.md +103 -75
  6. data/lib/capybara/config.rb +29 -56
  7. data/lib/capybara/cucumber.rb +2 -3
  8. data/lib/capybara/driver/base.rb +39 -18
  9. data/lib/capybara/driver/node.rb +36 -10
  10. data/lib/capybara/dsl.rb +15 -6
  11. data/lib/capybara/helpers.rb +65 -30
  12. data/lib/capybara/minitest/spec.rb +173 -81
  13. data/lib/capybara/minitest.rb +220 -111
  14. data/lib/capybara/node/actions.rb +274 -171
  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 +59 -26
  22. data/lib/capybara/queries/active_element_query.rb +18 -0
  23. data/lib/capybara/queries/ancestor_query.rb +13 -10
  24. data/lib/capybara/queries/base_query.rb +39 -28
  25. data/lib/capybara/queries/current_path_query.rb +22 -25
  26. data/lib/capybara/queries/match_query.rb +14 -7
  27. data/lib/capybara/queries/selector_query.rb +646 -145
  28. data/lib/capybara/queries/sibling_query.rb +12 -10
  29. data/lib/capybara/queries/style_query.rb +45 -0
  30. data/lib/capybara/queries/text_query.rb +56 -38
  31. data/lib/capybara/queries/title_query.rb +8 -11
  32. data/lib/capybara/rack_test/browser.rb +57 -41
  33. data/lib/capybara/rack_test/css_handlers.rb +6 -4
  34. data/lib/capybara/rack_test/driver.rb +18 -13
  35. data/lib/capybara/rack_test/errors.rb +6 -0
  36. data/lib/capybara/rack_test/form.rb +73 -58
  37. data/lib/capybara/rack_test/node.rb +188 -81
  38. data/lib/capybara/rails.rb +3 -7
  39. data/lib/capybara/registration_container.rb +44 -0
  40. data/lib/capybara/registrations/drivers.rb +42 -0
  41. data/lib/capybara/registrations/patches/puma_ssl.rb +29 -0
  42. data/lib/capybara/registrations/servers.rb +45 -0
  43. data/lib/capybara/result.rb +96 -62
  44. data/lib/capybara/rspec/features.rb +17 -50
  45. data/lib/capybara/rspec/matcher_proxies.rb +52 -15
  46. data/lib/capybara/rspec/matchers/base.rb +111 -0
  47. data/lib/capybara/rspec/matchers/become_closed.rb +33 -0
  48. data/lib/capybara/rspec/matchers/compound.rb +88 -0
  49. data/lib/capybara/rspec/matchers/count_sugar.rb +37 -0
  50. data/lib/capybara/rspec/matchers/have_ancestor.rb +28 -0
  51. data/lib/capybara/rspec/matchers/have_current_path.rb +29 -0
  52. data/lib/capybara/rspec/matchers/have_selector.rb +77 -0
  53. data/lib/capybara/rspec/matchers/have_sibling.rb +27 -0
  54. data/lib/capybara/rspec/matchers/have_text.rb +33 -0
  55. data/lib/capybara/rspec/matchers/have_title.rb +29 -0
  56. data/lib/capybara/rspec/matchers/match_selector.rb +27 -0
  57. data/lib/capybara/rspec/matchers/match_style.rb +43 -0
  58. data/lib/capybara/rspec/matchers/spatial_sugar.rb +39 -0
  59. data/lib/capybara/rspec/matchers.rb +144 -264
  60. data/lib/capybara/rspec.rb +7 -11
  61. data/lib/capybara/selector/builders/css_builder.rb +84 -0
  62. data/lib/capybara/selector/builders/xpath_builder.rb +71 -0
  63. data/lib/capybara/selector/css.rb +89 -17
  64. data/lib/capybara/selector/definition/button.rb +68 -0
  65. data/lib/capybara/selector/definition/checkbox.rb +26 -0
  66. data/lib/capybara/selector/definition/css.rb +10 -0
  67. data/lib/capybara/selector/definition/datalist_input.rb +35 -0
  68. data/lib/capybara/selector/definition/datalist_option.rb +25 -0
  69. data/lib/capybara/selector/definition/element.rb +28 -0
  70. data/lib/capybara/selector/definition/field.rb +40 -0
  71. data/lib/capybara/selector/definition/fieldset.rb +14 -0
  72. data/lib/capybara/selector/definition/file_field.rb +13 -0
  73. data/lib/capybara/selector/definition/fillable_field.rb +33 -0
  74. data/lib/capybara/selector/definition/frame.rb +17 -0
  75. data/lib/capybara/selector/definition/id.rb +6 -0
  76. data/lib/capybara/selector/definition/label.rb +62 -0
  77. data/lib/capybara/selector/definition/link.rb +54 -0
  78. data/lib/capybara/selector/definition/link_or_button.rb +16 -0
  79. data/lib/capybara/selector/definition/option.rb +27 -0
  80. data/lib/capybara/selector/definition/radio_button.rb +27 -0
  81. data/lib/capybara/selector/definition/select.rb +81 -0
  82. data/lib/capybara/selector/definition/table.rb +109 -0
  83. data/lib/capybara/selector/definition/table_row.rb +21 -0
  84. data/lib/capybara/selector/definition/xpath.rb +5 -0
  85. data/lib/capybara/selector/definition.rb +279 -0
  86. data/lib/capybara/selector/filter.rb +2 -17
  87. data/lib/capybara/selector/filter_set.rb +81 -33
  88. data/lib/capybara/selector/filters/base.rb +50 -6
  89. data/lib/capybara/selector/filters/expression_filter.rb +8 -26
  90. data/lib/capybara/selector/filters/locator_filter.rb +29 -0
  91. data/lib/capybara/selector/filters/node_filter.rb +16 -12
  92. data/lib/capybara/selector/regexp_disassembler.rb +214 -0
  93. data/lib/capybara/selector/selector.rb +89 -210
  94. data/lib/capybara/selector/xpath_extensions.rb +17 -0
  95. data/lib/capybara/selector.rb +227 -526
  96. data/lib/capybara/selenium/atoms/getAttribute.min.js +1 -0
  97. data/lib/capybara/selenium/atoms/isDisplayed.min.js +1 -0
  98. data/lib/capybara/selenium/atoms/src/getAttribute.js +161 -0
  99. data/lib/capybara/selenium/atoms/src/isDisplayed.js +454 -0
  100. data/lib/capybara/selenium/driver.rb +343 -276
  101. data/lib/capybara/selenium/driver_specializations/chrome_driver.rb +117 -0
  102. data/lib/capybara/selenium/driver_specializations/edge_driver.rb +124 -0
  103. data/lib/capybara/selenium/driver_specializations/firefox_driver.rb +89 -0
  104. data/lib/capybara/selenium/driver_specializations/internet_explorer_driver.rb +26 -0
  105. data/lib/capybara/selenium/driver_specializations/safari_driver.rb +24 -0
  106. data/lib/capybara/selenium/extensions/file_input_click_emulation.rb +34 -0
  107. data/lib/capybara/selenium/extensions/find.rb +110 -0
  108. data/lib/capybara/selenium/extensions/html5_drag.rb +228 -0
  109. data/lib/capybara/selenium/extensions/modifier_keys_stack.rb +28 -0
  110. data/lib/capybara/selenium/extensions/scroll.rb +76 -0
  111. data/lib/capybara/selenium/logger_suppressor.rb +40 -0
  112. data/lib/capybara/selenium/node.rb +508 -124
  113. data/lib/capybara/selenium/nodes/chrome_node.rb +137 -0
  114. data/lib/capybara/selenium/nodes/edge_node.rb +104 -0
  115. data/lib/capybara/selenium/nodes/firefox_node.rb +136 -0
  116. data/lib/capybara/selenium/nodes/ie_node.rb +22 -0
  117. data/lib/capybara/selenium/nodes/safari_node.rb +118 -0
  118. data/lib/capybara/selenium/patches/action_pauser.rb +26 -0
  119. data/lib/capybara/selenium/patches/atoms.rb +18 -0
  120. data/lib/capybara/selenium/patches/is_displayed.rb +16 -0
  121. data/lib/capybara/selenium/patches/logs.rb +45 -0
  122. data/lib/capybara/selenium/patches/pause_duration_fix.rb +9 -0
  123. data/lib/capybara/selenium/patches/persistent_client.rb +20 -0
  124. data/lib/capybara/server/animation_disabler.rb +69 -0
  125. data/lib/capybara/server/checker.rb +44 -0
  126. data/lib/capybara/server/middleware.rb +71 -0
  127. data/lib/capybara/server.rb +59 -67
  128. data/lib/capybara/session/config.rb +79 -59
  129. data/lib/capybara/session/matchers.rb +41 -25
  130. data/lib/capybara/session.rb +371 -357
  131. data/lib/capybara/spec/public/jquery.js +5 -5
  132. data/lib/capybara/spec/public/offset.js +6 -0
  133. data/lib/capybara/spec/public/test.js +159 -13
  134. data/lib/capybara/spec/session/accept_alert_spec.rb +12 -11
  135. data/lib/capybara/spec/session/accept_confirm_spec.rb +6 -5
  136. data/lib/capybara/spec/session/accept_prompt_spec.rb +34 -6
  137. data/lib/capybara/spec/session/active_element_spec.rb +31 -0
  138. data/lib/capybara/spec/session/all_spec.rb +161 -55
  139. data/lib/capybara/spec/session/ancestor_spec.rb +27 -24
  140. data/lib/capybara/spec/session/assert_all_of_selectors_spec.rb +68 -38
  141. data/lib/capybara/spec/session/assert_current_path_spec.rb +75 -0
  142. data/lib/capybara/spec/session/assert_selector_spec.rb +143 -0
  143. data/lib/capybara/spec/session/assert_style_spec.rb +26 -0
  144. data/lib/capybara/spec/session/{assert_text.rb → assert_text_spec.rb} +91 -59
  145. data/lib/capybara/spec/session/{assert_title.rb → assert_title_spec.rb} +22 -12
  146. data/lib/capybara/spec/session/attach_file_spec.rb +138 -69
  147. data/lib/capybara/spec/session/body_spec.rb +12 -13
  148. data/lib/capybara/spec/session/check_spec.rb +116 -55
  149. data/lib/capybara/spec/session/choose_spec.rb +64 -31
  150. data/lib/capybara/spec/session/click_button_spec.rb +231 -173
  151. data/lib/capybara/spec/session/click_link_or_button_spec.rb +55 -35
  152. data/lib/capybara/spec/session/click_link_spec.rb +82 -58
  153. data/lib/capybara/spec/session/current_scope_spec.rb +11 -10
  154. data/lib/capybara/spec/session/current_url_spec.rb +57 -39
  155. data/lib/capybara/spec/session/dismiss_confirm_spec.rb +4 -4
  156. data/lib/capybara/spec/session/dismiss_prompt_spec.rb +3 -2
  157. data/lib/capybara/spec/session/element/{assert_match_selector.rb → assert_match_selector_spec.rb} +11 -9
  158. data/lib/capybara/spec/session/element/match_css_spec.rb +18 -10
  159. data/lib/capybara/spec/session/element/match_xpath_spec.rb +9 -7
  160. data/lib/capybara/spec/session/element/matches_selector_spec.rb +71 -57
  161. data/lib/capybara/spec/session/evaluate_async_script_spec.rb +23 -0
  162. data/lib/capybara/spec/session/evaluate_script_spec.rb +30 -9
  163. data/lib/capybara/spec/session/execute_script_spec.rb +10 -8
  164. data/lib/capybara/spec/session/fill_in_spec.rb +128 -43
  165. data/lib/capybara/spec/session/find_button_spec.rb +25 -24
  166. data/lib/capybara/spec/session/find_by_id_spec.rb +10 -9
  167. data/lib/capybara/spec/session/find_field_spec.rb +37 -41
  168. data/lib/capybara/spec/session/find_link_spec.rb +36 -17
  169. data/lib/capybara/spec/session/find_spec.rb +245 -144
  170. data/lib/capybara/spec/session/first_spec.rb +79 -51
  171. data/lib/capybara/spec/session/frame/frame_title_spec.rb +23 -0
  172. data/lib/capybara/spec/session/frame/frame_url_spec.rb +23 -0
  173. data/lib/capybara/spec/session/frame/switch_to_frame_spec.rb +33 -20
  174. data/lib/capybara/spec/session/frame/within_frame_spec.rb +50 -32
  175. data/lib/capybara/spec/session/go_back_spec.rb +2 -1
  176. data/lib/capybara/spec/session/go_forward_spec.rb +2 -1
  177. data/lib/capybara/spec/session/has_all_selectors_spec.rb +69 -0
  178. data/lib/capybara/spec/session/has_ancestor_spec.rb +46 -0
  179. data/lib/capybara/spec/session/has_any_selectors_spec.rb +29 -0
  180. data/lib/capybara/spec/session/has_button_spec.rb +94 -13
  181. data/lib/capybara/spec/session/has_css_spec.rb +272 -137
  182. data/lib/capybara/spec/session/has_current_path_spec.rb +87 -45
  183. data/lib/capybara/spec/session/has_field_spec.rb +139 -59
  184. data/lib/capybara/spec/session/has_link_spec.rb +34 -9
  185. data/lib/capybara/spec/session/has_none_selectors_spec.rb +78 -0
  186. data/lib/capybara/spec/session/has_select_spec.rb +103 -74
  187. data/lib/capybara/spec/session/has_selector_spec.rb +105 -71
  188. data/lib/capybara/spec/session/has_sibling_spec.rb +50 -0
  189. data/lib/capybara/spec/session/has_table_spec.rb +172 -5
  190. data/lib/capybara/spec/session/has_text_spec.rb +113 -61
  191. data/lib/capybara/spec/session/has_title_spec.rb +20 -14
  192. data/lib/capybara/spec/session/has_xpath_spec.rb +57 -38
  193. data/lib/capybara/spec/session/{headers.rb → headers_spec.rb} +3 -2
  194. data/lib/capybara/spec/session/html_spec.rb +14 -6
  195. data/lib/capybara/spec/session/matches_style_spec.rb +35 -0
  196. data/lib/capybara/spec/session/node_spec.rb +950 -152
  197. data/lib/capybara/spec/session/node_wrapper_spec.rb +39 -0
  198. data/lib/capybara/spec/session/refresh_spec.rb +12 -6
  199. data/lib/capybara/spec/session/reset_session_spec.rb +69 -35
  200. data/lib/capybara/spec/session/{response_code.rb → response_code_spec.rb} +2 -1
  201. data/lib/capybara/spec/session/save_and_open_page_spec.rb +3 -2
  202. data/lib/capybara/spec/session/save_and_open_screenshot_spec.rb +8 -12
  203. data/lib/capybara/spec/session/save_page_spec.rb +42 -55
  204. data/lib/capybara/spec/session/save_screenshot_spec.rb +16 -14
  205. data/lib/capybara/spec/session/screenshot_spec.rb +2 -2
  206. data/lib/capybara/spec/session/scroll_spec.rb +117 -0
  207. data/lib/capybara/spec/session/select_spec.rb +107 -80
  208. data/lib/capybara/spec/session/selectors_spec.rb +52 -19
  209. data/lib/capybara/spec/session/sibling_spec.rb +10 -10
  210. data/lib/capybara/spec/session/text_spec.rb +37 -21
  211. data/lib/capybara/spec/session/title_spec.rb +17 -5
  212. data/lib/capybara/spec/session/uncheck_spec.rb +42 -22
  213. data/lib/capybara/spec/session/unselect_spec.rb +39 -38
  214. data/lib/capybara/spec/session/visit_spec.rb +99 -32
  215. data/lib/capybara/spec/session/window/become_closed_spec.rb +24 -20
  216. data/lib/capybara/spec/session/window/current_window_spec.rb +5 -3
  217. data/lib/capybara/spec/session/window/open_new_window_spec.rb +5 -3
  218. data/lib/capybara/spec/session/window/switch_to_window_spec.rb +27 -22
  219. data/lib/capybara/spec/session/window/window_opened_by_spec.rb +12 -6
  220. data/lib/capybara/spec/session/window/window_spec.rb +97 -63
  221. data/lib/capybara/spec/session/window/windows_spec.rb +12 -10
  222. data/lib/capybara/spec/session/window/within_window_spec.rb +31 -86
  223. data/lib/capybara/spec/session/within_spec.rb +70 -44
  224. data/lib/capybara/spec/spec_helper.rb +49 -43
  225. data/lib/capybara/spec/test_app.rb +89 -42
  226. data/lib/capybara/spec/views/animated.erb +49 -0
  227. data/lib/capybara/spec/views/form.erb +141 -42
  228. data/lib/capybara/spec/views/frame_child.erb +4 -3
  229. data/lib/capybara/spec/views/frame_one.erb +2 -1
  230. data/lib/capybara/spec/views/frame_parent.erb +1 -1
  231. data/lib/capybara/spec/views/frame_two.erb +1 -1
  232. data/lib/capybara/spec/views/initial_alert.erb +11 -0
  233. data/lib/capybara/spec/views/layout.erb +10 -0
  234. data/lib/capybara/spec/views/obscured.erb +47 -0
  235. data/lib/capybara/spec/views/offset.erb +33 -0
  236. data/lib/capybara/spec/views/path.erb +2 -2
  237. data/lib/capybara/spec/views/popup_one.erb +1 -1
  238. data/lib/capybara/spec/views/popup_two.erb +1 -1
  239. data/lib/capybara/spec/views/react.erb +45 -0
  240. data/lib/capybara/spec/views/scroll.erb +21 -0
  241. data/lib/capybara/spec/views/spatial.erb +31 -0
  242. data/lib/capybara/spec/views/tables.erb +68 -1
  243. data/lib/capybara/spec/views/with_animation.erb +81 -0
  244. data/lib/capybara/spec/views/with_base_tag.erb +2 -2
  245. data/lib/capybara/spec/views/with_dragula.erb +24 -0
  246. data/lib/capybara/spec/views/with_fixed_header_footer.erb +18 -0
  247. data/lib/capybara/spec/views/with_hover.erb +8 -2
  248. data/lib/capybara/spec/views/with_hover1.erb +10 -0
  249. data/lib/capybara/spec/views/with_html.erb +70 -11
  250. data/lib/capybara/spec/views/with_html5_svg.erb +20 -0
  251. data/lib/capybara/spec/views/with_jquery_animation.erb +24 -0
  252. data/lib/capybara/spec/views/with_js.erb +39 -3
  253. data/lib/capybara/spec/views/with_jstree.erb +26 -0
  254. data/lib/capybara/spec/views/with_namespace.erb +21 -0
  255. data/lib/capybara/spec/views/with_scope_other.erb +6 -0
  256. data/lib/capybara/spec/views/with_slow_unload.erb +2 -1
  257. data/lib/capybara/spec/views/with_sortable_js.erb +21 -0
  258. data/lib/capybara/spec/views/with_unload_alert.erb +1 -0
  259. data/lib/capybara/spec/views/with_windows.erb +1 -1
  260. data/lib/capybara/spec/views/within_frames.erb +5 -2
  261. data/lib/capybara/version.rb +2 -1
  262. data/lib/capybara/window.rb +35 -33
  263. data/lib/capybara.rb +126 -103
  264. data/spec/basic_node_spec.rb +60 -34
  265. data/spec/capybara_spec.rb +53 -104
  266. data/spec/css_builder_spec.rb +101 -0
  267. data/spec/css_splitter_spec.rb +38 -0
  268. data/spec/dsl_spec.rb +81 -62
  269. data/spec/filter_set_spec.rb +27 -9
  270. data/spec/fixtures/certificate.pem +25 -0
  271. data/spec/fixtures/key.pem +27 -0
  272. data/spec/fixtures/selenium_driver_rspec_failure.rb +5 -4
  273. data/spec/fixtures/selenium_driver_rspec_success.rb +5 -4
  274. data/spec/minitest_spec.rb +49 -7
  275. data/spec/minitest_spec_spec.rb +94 -59
  276. data/spec/per_session_config_spec.rb +14 -13
  277. data/spec/rack_test_spec.rb +180 -125
  278. data/spec/regexp_dissassembler_spec.rb +250 -0
  279. data/spec/result_spec.rb +99 -45
  280. data/spec/rspec/features_spec.rb +37 -31
  281. data/spec/rspec/scenarios_spec.rb +9 -7
  282. data/spec/rspec/shared_spec_matchers.rb +448 -421
  283. data/spec/rspec/views_spec.rb +5 -3
  284. data/spec/rspec_matchers_spec.rb +27 -11
  285. data/spec/rspec_spec.rb +109 -89
  286. data/spec/sauce_spec_chrome.rb +43 -0
  287. data/spec/selector_spec.rb +396 -67
  288. data/spec/selenium_spec_chrome.rb +183 -35
  289. data/spec/selenium_spec_chrome_remote.rb +101 -0
  290. data/spec/selenium_spec_edge.rb +47 -0
  291. data/spec/selenium_spec_firefox.rb +184 -41
  292. data/spec/selenium_spec_firefox_remote.rb +80 -0
  293. data/spec/selenium_spec_ie.rb +147 -0
  294. data/spec/selenium_spec_safari.rb +156 -0
  295. data/spec/server_spec.rb +198 -99
  296. data/spec/session_spec.rb +53 -16
  297. data/spec/shared_selenium_node.rb +79 -0
  298. data/spec/shared_selenium_session.rb +489 -97
  299. data/spec/spec_helper.rb +93 -7
  300. data/spec/xpath_builder_spec.rb +93 -0
  301. metadata +365 -70
  302. data/.yard/templates_custom/default/class/html/selectors.erb +0 -38
  303. data/.yard/templates_custom/default/class/html/setup.rb +0 -17
  304. data/.yard/yard_extensions.rb +0 -78
  305. data/lib/capybara/query.rb +0 -7
  306. data/lib/capybara/rspec/compound.rb +0 -95
  307. data/lib/capybara/spec/session/assert_current_path.rb +0 -72
  308. data/lib/capybara/spec/session/assert_selector.rb +0 -148
  309. data/lib/capybara/spec/session/source_spec.rb +0 -0
  310. data/lib/capybara/spec/views/with_title.erb +0 -5
  311. data/spec/selenium_spec_marionette.rb +0 -117
@@ -1,13 +1,25 @@
1
1
  # frozen_string_literal: true
2
+
3
+ # Selenium specific implementation of the Capybara::Driver::Node API
4
+
5
+ require 'capybara/selenium/extensions/find'
6
+ require 'capybara/selenium/extensions/scroll'
7
+
2
8
  class Capybara::Selenium::Node < Capybara::Driver::Node
9
+ include Capybara::Selenium::Find
10
+ include Capybara::Selenium::Scroll
11
+
3
12
  def visible_text
4
- # Selenium doesn't normalize Unicode whitespace.
5
- Capybara::Helpers.normalize_whitespace(native.text)
13
+ native.text
6
14
  end
7
15
 
8
16
  def all_text
9
- text = driver.execute_script("return arguments[0].textContent", self)
10
- Capybara::Helpers.normalize_whitespace(text)
17
+ text = driver.evaluate_script('arguments[0].textContent', self) || ''
18
+ text.gsub(/[\u200b\u200e\u200f]/, '')
19
+ .gsub(/[\ \n\f\t\v\u2028\u2029]+/, ' ')
20
+ .gsub(/\A[[:space:]&&[^\u00a0]]+/, '')
21
+ .gsub(/[[:space:]&&[^\u00a0]]+\z/, '')
22
+ .tr("\u00a0", ' ')
11
23
  end
12
24
 
13
25
  def [](name)
@@ -17,13 +29,19 @@ class Capybara::Selenium::Node < Capybara::Driver::Node
17
29
  end
18
30
 
19
31
  def value
20
- if tag_name == "select" and multiple?
21
- native.find_elements(:css, "option:checked").map { |n| n[:value] || n.text }
32
+ if tag_name == 'select' && multiple?
33
+ native.find_elements(:css, 'option:checked').map { |el| el[:value] || el.text }
22
34
  else
23
35
  native[:value]
24
36
  end
25
37
  end
26
38
 
39
+ def style(styles)
40
+ styles.each_with_object({}) do |style, result|
41
+ result[style] = native.css_value(style)
42
+ end
43
+ end
44
+
27
45
  ##
28
46
  #
29
47
  # Set the value of the form element to the given value.
@@ -35,79 +53,104 @@ class Capybara::Selenium::Node < Capybara::Driver::Node
35
53
  # :none => append the new value to the existing value <br/>
36
54
  # :backspace => send backspace keystrokes to clear the field <br/>
37
55
  # Array => an array of keys to send before the value being set, e.g. [[:command, 'a'], :backspace]
38
- def set(value, options={})
39
- tag_name = self.tag_name
40
- type = self[:type]
41
-
42
- if (Array === value) && !multiple?
43
- raise ArgumentError.new "Value cannot be an Array when 'multiple' attribute is not present. Not a #{value.class}"
56
+ def set(value, **options)
57
+ if value.is_a?(Array) && !multiple?
58
+ raise ArgumentError, "Value cannot be an Array when 'multiple' attribute is not present. Not a #{value.class}"
44
59
  end
45
60
 
61
+ tag_name, type = attrs(:tagName, :type).map { |val| val&.downcase }
62
+ @tag_name ||= tag_name
63
+
46
64
  case tag_name
47
65
  when 'input'
48
66
  case type
49
67
  when 'radio'
50
68
  click
51
69
  when 'checkbox'
52
- click if value ^ native.attribute('checked').to_s.eql?("true")
70
+ click if value ^ checked?
53
71
  when 'file'
54
- path_names = value.to_s.empty? ? [] : value
55
- if driver.chrome?
56
- native.send_keys(Array(path_names).join("\n"))
57
- else
58
- native.send_keys(*path_names)
59
- end
72
+ set_file(value)
73
+ when 'date'
74
+ set_date(value)
75
+ when 'time'
76
+ set_time(value)
77
+ when 'datetime-local'
78
+ set_datetime_local(value)
79
+ when 'color'
80
+ set_color(value)
81
+ when 'range'
82
+ set_range(value)
60
83
  else
61
- set_text(value, options)
84
+ set_text(value, **options)
62
85
  end
63
86
  when 'textarea'
64
- set_text(value, options)
87
+ set_text(value, **options)
65
88
  else
66
- if content_editable?
67
- #ensure we are focused on the element
68
- click
69
-
70
- script = <<-JS
71
- var range = document.createRange();
72
- var sel = window.getSelection();
73
- arguments[0].focus();
74
- range.selectNodeContents(arguments[0]);
75
- sel.removeAllRanges();
76
- sel.addRange(range);
77
- JS
78
- driver.execute_script script, self
79
-
80
- if (driver.chrome?) || (driver.firefox? && !driver.marionette?)
81
- # chromedriver raises a can't focus element for child elements if we use native.send_keys
82
- # we've already focused it so just use action api
83
- driver.browser.action.send_keys(value.to_s).perform
84
- else
85
- # action api is really slow here just use native.send_keys
86
- native.send_keys(value.to_s)
87
- end
88
- end
89
+ set_content_editable(value)
89
90
  end
90
91
  end
91
92
 
92
93
  def select_option
93
- native.click unless selected? || disabled?
94
+ click unless selected? || disabled?
94
95
  end
95
96
 
96
97
  def unselect_option
97
- raise Capybara::UnselectNotAllowed, "Cannot unselect option from single select box." if !select_node.multiple?
98
- native.click if selected?
98
+ raise Capybara::UnselectNotAllowed, 'Cannot unselect option from single select box.' unless select_node.multiple?
99
+
100
+ click if selected?
99
101
  end
100
102
 
101
- def click
102
- native.click
103
+ def click(keys = [], **options)
104
+ click_options = ClickOptions.new(keys, options)
105
+ return native.click if click_options.empty?
106
+
107
+ perform_with_options(click_options) do |action|
108
+ target = click_options.coords? ? nil : native
109
+ if click_options.delay.zero?
110
+ action.click(target)
111
+ else
112
+ action.click_and_hold(target)
113
+ if w3c?
114
+ action.pause(action.pointer_inputs.first, click_options.delay)
115
+ else
116
+ action.pause(click_options.delay)
117
+ end
118
+ action.release
119
+ end
120
+ end
121
+ rescue StandardError => e
122
+ if e.is_a?(::Selenium::WebDriver::Error::ElementClickInterceptedError) ||
123
+ e.message.include?('Other element would receive the click')
124
+ scroll_to_center
125
+ end
126
+
127
+ raise e
103
128
  end
104
129
 
105
- def right_click
106
- driver.browser.action.context_click(native).perform
130
+ def right_click(keys = [], **options)
131
+ click_options = ClickOptions.new(keys, options)
132
+ perform_with_options(click_options) do |action|
133
+ target = click_options.coords? ? nil : native
134
+ if click_options.delay.zero?
135
+ action.context_click(target)
136
+ elsif w3c?
137
+ action.move_to(target) if target
138
+ action.pointer_down(:right)
139
+ .pause(action.pointer_inputs.first, click_options.delay)
140
+ .pointer_up(:right)
141
+ else
142
+ raise ArgumentError, 'Delay is not supported when right clicking with legacy (non-w3c) selenium driver'
143
+ end
144
+ end
107
145
  end
108
146
 
109
- def double_click
110
- driver.browser.action.double_click(native).perform
147
+ def double_click(keys = [], **options)
148
+ click_options = ClickOptions.new(keys, options)
149
+ raise ArgumentError, "double_click doesn't support a delay option" unless click_options.delay.zero?
150
+
151
+ perform_with_options(click_options) do |action|
152
+ click_options.coords? ? action.double_click : action.double_click(native)
153
+ end
111
154
  end
112
155
 
113
156
  def send_keys(*args)
@@ -115,118 +158,459 @@ class Capybara::Selenium::Node < Capybara::Driver::Node
115
158
  end
116
159
 
117
160
  def hover
118
- driver.browser.action.move_to(native).perform
161
+ scroll_if_needed { browser_action.move_to(native).perform }
119
162
  end
120
163
 
121
- def drag_to(element)
122
- driver.browser.action.drag_and_drop(native, element.native).perform
164
+ def drag_to(element, drop_modifiers: [], **)
165
+ drop_modifiers = Array(drop_modifiers)
166
+ # Due to W3C spec compliance - The Actions API no longer scrolls to elements when necessary
167
+ # which means Seleniums `drag_and_drop` is now broken - do it manually
168
+ scroll_if_needed { browser_action.click_and_hold(native).perform }
169
+ # element.scroll_if_needed { browser_action.move_to(element.native).release.perform }
170
+ element.scroll_if_needed do
171
+ keys_down = modifiers_down(browser_action, drop_modifiers)
172
+ keys_up = modifiers_up(keys_down.move_to(element.native).release, drop_modifiers)
173
+ keys_up.perform
174
+ end
123
175
  end
124
176
 
125
- def tag_name
126
- native.tag_name.downcase
177
+ def drop(*_)
178
+ raise NotImplementedError, 'Out of browser drop emulation is not implemented for the current browser'
127
179
  end
128
180
 
129
- def visible?
130
- displayed = native.displayed?
131
- displayed and displayed != "false"
181
+ def tag_name
182
+ @tag_name ||= native.tag_name.downcase
132
183
  end
133
184
 
134
- def selected?
135
- selected = native.selected?
136
- selected and selected != "false"
137
- end
185
+ def visible?; boolean_attr(native.displayed?); end
186
+ def readonly?; boolean_attr(self[:readonly]); end
187
+ def multiple?; boolean_attr(self[:multiple]); end
188
+ def selected?; boolean_attr(native.selected?); end
138
189
  alias :checked? :selected?
139
190
 
140
191
  def disabled?
141
- # workaround for selenium-webdriver/geckodriver reporting elements as enabled when they are nested in disabling elements
142
- if driver.marionette?
143
- if %w(option optgroup).include? tag_name
144
- !native.enabled? || find_xpath("parent::*[self::optgroup or self::select]")[0].disabled?
192
+ return true unless native.enabled?
193
+
194
+ # WebDriver only defines `disabled?` for form controls but fieldset makes sense too
195
+ find_xpath('self::fieldset/ancestor-or-self::fieldset[@disabled]').any?
196
+ end
197
+
198
+ def content_editable?
199
+ native.attribute('isContentEditable') == 'true'
200
+ end
201
+
202
+ def path
203
+ driver.evaluate_script GET_XPATH_SCRIPT, self
204
+ end
205
+
206
+ def obscured?(x: nil, y: nil)
207
+ res = driver.evaluate_script(OBSCURED_OR_OFFSET_SCRIPT, self, x, y)
208
+ return true if res == true
209
+
210
+ driver.frame_obscured_at?(x: res['x'], y: res['y'])
211
+ end
212
+
213
+ def rect
214
+ native.rect
215
+ end
216
+
217
+ protected
218
+
219
+ def scroll_if_needed
220
+ yield
221
+ rescue ::Selenium::WebDriver::Error::MoveTargetOutOfBoundsError
222
+ scroll_to_center
223
+ yield
224
+ end
225
+
226
+ def scroll_to_center
227
+ script = <<-'JS'
228
+ try {
229
+ arguments[0].scrollIntoView({behavior: 'instant', block: 'center', inline: 'center'});
230
+ } catch(e) {
231
+ arguments[0].scrollIntoView(true);
232
+ }
233
+ JS
234
+ begin
235
+ driver.execute_script(script, self)
236
+ rescue StandardError
237
+ # Swallow error if scrollIntoView with options isn't supported
238
+ end
239
+ end
240
+
241
+ private
242
+
243
+ def sibling_index(parent, node, selector)
244
+ siblings = parent.find_xpath(selector)
245
+ case siblings.size
246
+ when 0
247
+ '[ERROR]' # IE doesn't support full XPath (namespace-uri, etc)
248
+ when 1
249
+ '' # index not necessary when only one matching element
250
+ else
251
+ idx = siblings.index(node)
252
+ # Element may not be found in the siblings if it has gone away
253
+ idx.nil? ? '[ERROR]' : "[#{idx + 1}]"
254
+ end
255
+ end
256
+
257
+ def boolean_attr(val)
258
+ val && (val != 'false')
259
+ end
260
+
261
+ # a reference to the select node if this is an option node
262
+ def select_node
263
+ find_xpath(XPath.ancestor(:select)[1]).first
264
+ end
265
+
266
+ def set_text(value, clear: nil, rapid: nil, **_unused)
267
+ value = value.to_s
268
+ if value.empty? && clear.nil?
269
+ native.clear
270
+ elsif clear == :backspace
271
+ # Clear field by sending the correct number of backspace keys.
272
+ backspaces = [:backspace] * self.value.to_s.length
273
+ send_keys(:end, *backspaces, value)
274
+ elsif clear.is_a? Array
275
+ send_keys(*clear, value)
276
+ else
277
+ driver.execute_script 'arguments[0].select()', self unless clear == :none
278
+ if rapid == true || ((value.length > auto_rapid_set_length) && rapid != false)
279
+ send_keys(value[0..3])
280
+ driver.execute_script RAPID_APPEND_TEXT, self, value[4...-3]
281
+ send_keys(value[-3..])
145
282
  else
146
- !native.enabled? || !find_xpath("parent::fieldset[@disabled] | ancestor::*[not(self::legend) or preceding-sibling::legend][parent::fieldset[@disabled]]").empty?
283
+ send_keys(value)
147
284
  end
148
- else
149
- !native.enabled?
150
285
  end
151
286
  end
152
287
 
153
- def readonly?
154
- readonly = self[:readonly]
155
- readonly and readonly != "false"
288
+ def auto_rapid_set_length
289
+ 30
290
+ end
291
+
292
+ def perform_with_options(click_options, &block)
293
+ raise ArgumentError, 'A block must be provided' unless block
294
+
295
+ scroll_if_needed do
296
+ action_with_modifiers(click_options) do |action|
297
+ if block
298
+ yield action
299
+ else
300
+ click_options.coords? ? action.click : action.click(native)
301
+ end
302
+ end
303
+ end
156
304
  end
157
305
 
158
- def multiple?
159
- multiple = self[:multiple]
160
- multiple and multiple != "false"
306
+ def set_date(value) # rubocop:disable Naming/AccessorMethodName
307
+ value = SettableValue.new(value)
308
+ return set_text(value) unless value.dateable?
309
+
310
+ # TODO: this would be better if locale can be detected and correct keystrokes sent
311
+ update_value_js(value.to_date_str)
161
312
  end
162
313
 
163
- def content_editable?
164
- native.attribute('isContentEditable')
314
+ def set_time(value) # rubocop:disable Naming/AccessorMethodName
315
+ value = SettableValue.new(value)
316
+ return set_text(value) unless value.timeable?
317
+
318
+ # TODO: this would be better if locale can be detected and correct keystrokes sent
319
+ update_value_js(value.to_time_str)
165
320
  end
166
321
 
167
- def find_xpath(locator)
168
- native.find_elements(:xpath, locator).map { |n| self.class.new(driver, n) }
322
+ def set_datetime_local(value) # rubocop:disable Naming/AccessorMethodName
323
+ value = SettableValue.new(value)
324
+ return set_text(value) unless value.timeable?
325
+
326
+ # TODO: this would be better if locale can be detected and correct keystrokes sent
327
+ update_value_js(value.to_datetime_str)
169
328
  end
170
329
 
171
- def find_css(locator)
172
- native.find_elements(:css, locator).map { |n| self.class.new(driver, n) }
330
+ def set_color(value) # rubocop:disable Naming/AccessorMethodName
331
+ update_value_js(value)
173
332
  end
174
333
 
175
- def ==(other)
176
- native == other.native
334
+ def set_range(value) # rubocop:disable Naming/AccessorMethodName
335
+ update_value_js(value)
177
336
  end
178
337
 
179
- def path
180
- path = find_xpath('ancestor::*').reverse
181
- path.unshift self
338
+ def update_value_js(value)
339
+ driver.execute_script(<<-JS, self, value)
340
+ if (arguments[0].readOnly) { return };
341
+ if (document.activeElement !== arguments[0]){
342
+ arguments[0].focus();
343
+ }
344
+ if (arguments[0].value != arguments[1]) {
345
+ arguments[0].value = arguments[1]
346
+ arguments[0].dispatchEvent(new InputEvent('input'));
347
+ arguments[0].dispatchEvent(new Event('change', { bubbles: true }));
348
+ }
349
+ JS
350
+ end
182
351
 
183
- result = []
184
- while node = path.shift
185
- parent = path.first
352
+ def set_file(value) # rubocop:disable Naming/AccessorMethodName
353
+ with_file_detector do
354
+ path_names = value.to_s.empty? ? [] : value
355
+ file_names = Array(path_names).map do |pn|
356
+ Pathname.new(pn).absolute? ? pn : File.expand_path(pn)
357
+ end.join("\n")
358
+ native.send_keys(file_names)
359
+ end
360
+ end
186
361
 
187
- if parent
188
- siblings = parent.find_xpath(node.tag_name)
189
- if siblings.size == 1
190
- result.unshift node.tag_name
191
- else
192
- index = siblings.index(node)
193
- result.unshift "#{node.tag_name}[#{index+1}]"
362
+ def with_file_detector
363
+ if driver.options[:browser] == :remote &&
364
+ bridge.respond_to?(:file_detector) &&
365
+ bridge.file_detector.nil?
366
+ begin
367
+ bridge.file_detector = lambda do |(fn, *)|
368
+ str = fn.to_s
369
+ str if File.exist?(str)
194
370
  end
371
+ yield
372
+ ensure
373
+ bridge.file_detector = nil
374
+ end
375
+ else
376
+ yield
377
+ end
378
+ end
379
+
380
+ def set_content_editable(value) # rubocop:disable Naming/AccessorMethodName
381
+ # Ensure we are focused on the element
382
+ click
383
+
384
+ editable = driver.execute_script <<-JS, self
385
+ if (arguments[0].isContentEditable) {
386
+ var range = document.createRange();
387
+ var sel = window.getSelection();
388
+ arguments[0].focus();
389
+ range.selectNodeContents(arguments[0]);
390
+ sel.removeAllRanges();
391
+ sel.addRange(range);
392
+ return true;
393
+ }
394
+ return false;
395
+ JS
396
+
397
+ # The action api has a speed problem but both chrome and firefox 58 raise errors
398
+ # if we use the faster direct send_keys. For now just send_keys to the element
399
+ # we've already focused.
400
+ # native.send_keys(value.to_s)
401
+ browser_action.send_keys(value.to_s).perform if editable
402
+ end
403
+
404
+ def action_with_modifiers(click_options)
405
+ actions = browser_action.tap do |acts|
406
+ if click_options.center_offset? && click_options.coords?
407
+ acts.move_to(native).move_by(*click_options.coords)
195
408
  else
196
- result.unshift node.tag_name
409
+ acts.move_to(native, *click_options.coords)
197
410
  end
198
411
  end
412
+ modifiers_down(actions, click_options.keys)
413
+ yield actions
414
+ modifiers_up(actions, click_options.keys)
415
+ actions.perform
416
+ ensure
417
+ act = browser_action
418
+ act.release_actions if act.respond_to?(:release_actions)
419
+ end
199
420
 
200
- '/' + result.join('/')
421
+ def modifiers_down(actions, keys)
422
+ each_key(keys) { |key| actions.key_down(key) }
423
+ actions
201
424
  end
202
425
 
203
- private
204
- # a reference to the select node if this is an option node
205
- def select_node
206
- find_xpath('./ancestor::select[1]').first
426
+ def modifiers_up(actions, keys)
427
+ each_key(keys) { |key| actions.key_up(key) }
428
+ actions
207
429
  end
208
430
 
209
- def set_text(value, options)
210
- if readonly?
211
- warn "Attempt to set readonly element with value: #{value} \n *This will raise an exception in a future version of Capybara"
212
- elsif value.to_s.empty?
213
- native.clear
214
- else
215
- if options[:clear] == :backspace
216
- # Clear field by sending the correct number of backspace keys.
217
- backspaces = [:backspace] * self.value.to_s.length
218
- native.send_keys(*(backspaces + [value.to_s]))
219
- elsif options[:clear] == :none
220
- native.send_keys(value.to_s)
221
- elsif options[:clear].is_a? Array
222
- native.send_keys(*options[:clear], value.to_s)
431
+ def browser
432
+ driver.browser
433
+ end
434
+
435
+ def bridge
436
+ browser.send(:bridge)
437
+ end
438
+
439
+ def browser_action
440
+ browser.action
441
+ end
442
+
443
+ def capabilities
444
+ browser.capabilities
445
+ end
446
+
447
+ def w3c?
448
+ (defined?(Selenium::WebDriver::VERSION) && (Selenium::WebDriver::VERSION.to_f >= 4)) ||
449
+ capabilities.is_a?(::Selenium::WebDriver::Remote::W3C::Capabilities)
450
+ end
451
+
452
+ def normalize_keys(keys)
453
+ keys.map do |key|
454
+ case key
455
+ when :ctrl then :control
456
+ when :command, :cmd then :meta
223
457
  else
224
- # Clear field by JavaScript assignment of the value property.
225
- # Script can change a readonly element which user input cannot, so
226
- # don't execute if readonly.
227
- driver.execute_script "arguments[0].value = ''", self
228
- native.send_keys(value.to_s)
458
+ key
229
459
  end
230
460
  end
231
461
  end
462
+
463
+ def each_key(keys, &block)
464
+ normalize_keys(keys).each(&block)
465
+ end
466
+
467
+ def find_context
468
+ native
469
+ end
470
+
471
+ def build_node(native_node, initial_cache = {})
472
+ self.class.new(driver, native_node, initial_cache)
473
+ end
474
+
475
+ def attrs(*attr_names)
476
+ return attr_names.map { |name| self[name.to_s] } if ENV['CAPYBARA_THOROUGH']
477
+
478
+ driver.evaluate_script <<~'JS', self, attr_names.map(&:to_s)
479
+ (function(el, names){
480
+ return names.map(function(name){
481
+ return el[name]
482
+ });
483
+ })(arguments[0], arguments[1]);
484
+ JS
485
+ end
486
+
487
+ def native_id
488
+ # Selenium 3 -> 4 changed the return of ref
489
+ type_or_id, id = native.ref
490
+ id || type_or_id
491
+ end
492
+
493
+ GET_XPATH_SCRIPT = <<~'JS'
494
+ (function(el, xml){
495
+ var xpath = '';
496
+ var pos, tempitem2;
497
+
498
+ if (el.getRootNode && el.getRootNode() instanceof ShadowRoot) {
499
+ return "(: Shadow DOM element - no XPath :)";
500
+ };
501
+ while(el !== xml.documentElement) {
502
+ pos = 0;
503
+ tempitem2 = el;
504
+ while(tempitem2) {
505
+ if (tempitem2.nodeType === 1 && tempitem2.nodeName === el.nodeName) { // If it is ELEMENT_NODE of the same name
506
+ pos += 1;
507
+ }
508
+ tempitem2 = tempitem2.previousSibling;
509
+ }
510
+
511
+ if (el.namespaceURI != xml.documentElement.namespaceURI) {
512
+ xpath = "*[local-name()='"+el.nodeName+"' and namespace-uri()='"+(el.namespaceURI===null?'':el.namespaceURI)+"']["+pos+']'+'/'+xpath;
513
+ } else {
514
+ xpath = el.nodeName.toUpperCase()+"["+pos+"]/"+xpath;
515
+ }
516
+
517
+ el = el.parentNode;
518
+ }
519
+ xpath = '/'+xml.documentElement.nodeName.toUpperCase()+'/'+xpath;
520
+ xpath = xpath.replace(/\/$/, '');
521
+ return xpath;
522
+ })(arguments[0], document)
523
+ JS
524
+
525
+ OBSCURED_OR_OFFSET_SCRIPT = <<~'JS'
526
+ (function(el, x, y) {
527
+ var box = el.getBoundingClientRect();
528
+ if (x == null) x = box.width/2;
529
+ if (y == null) y = box.height/2 ;
530
+
531
+ var px = box.left + x,
532
+ py = box.top + y,
533
+ e = document.elementFromPoint(px, py);
534
+
535
+ if (!el.contains(e))
536
+ return true;
537
+
538
+ return { x: px, y: py };
539
+ })(arguments[0], arguments[1], arguments[2])
540
+ JS
541
+
542
+ RAPID_APPEND_TEXT = <<~'JS'
543
+ (function(el, value) {
544
+ value = el.value + value;
545
+ if (el.maxLength && el.maxLength != -1){
546
+ value = value.slice(0, el.maxLength);
547
+ }
548
+ el.value = value;
549
+ })(arguments[0], arguments[1])
550
+ JS
551
+
552
+ # SettableValue encapsulates time/date field formatting
553
+ class SettableValue
554
+ attr_reader :value
555
+
556
+ def initialize(value)
557
+ @value = value
558
+ end
559
+
560
+ def to_s
561
+ value.to_s
562
+ end
563
+
564
+ def dateable?
565
+ !value.is_a?(String) && value.respond_to?(:to_date)
566
+ end
567
+
568
+ def to_date_str
569
+ value.to_date.iso8601
570
+ end
571
+
572
+ def timeable?
573
+ !value.is_a?(String) && value.respond_to?(:to_time)
574
+ end
575
+
576
+ def to_time_str
577
+ value.to_time.strftime('%H:%M')
578
+ end
579
+
580
+ def to_datetime_str
581
+ value.to_time.strftime('%Y-%m-%dT%H:%M')
582
+ end
583
+ end
584
+ private_constant :SettableValue
585
+
586
+ # ClickOptions encapsulates click option logic
587
+ class ClickOptions
588
+ attr_reader :keys, :options
589
+
590
+ def initialize(keys, options)
591
+ @keys = keys
592
+ @options = options
593
+ end
594
+
595
+ def coords?
596
+ options[:x] && options[:y]
597
+ end
598
+
599
+ def coords
600
+ [options[:x], options[:y]]
601
+ end
602
+
603
+ def center_offset?
604
+ options[:offset] == :center
605
+ end
606
+
607
+ def empty?
608
+ keys.empty? && !coords? && delay.zero?
609
+ end
610
+
611
+ def delay
612
+ options[:delay] || 0
613
+ end
614
+ end
615
+ private_constant :ClickOptions
232
616
  end