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
@@ -0,0 +1,228 @@
1
+ # frozen_string_literal: true
2
+
3
+ class Capybara::Selenium::Node
4
+ module Html5Drag
5
+ # Implement methods to emulate HTML5 drag and drop
6
+
7
+ def drag_to(element, html5: nil, delay: 0.05, drop_modifiers: [])
8
+ drop_modifiers = Array(drop_modifiers)
9
+
10
+ driver.execute_script MOUSEDOWN_TRACKER
11
+ scroll_if_needed { browser_action.click_and_hold(native).perform }
12
+ html5 = !driver.evaluate_script(LEGACY_DRAG_CHECK, self) if html5.nil?
13
+ if html5
14
+ perform_html5_drag(element, delay, drop_modifiers)
15
+ else
16
+ perform_legacy_drag(element, drop_modifiers)
17
+ end
18
+ end
19
+
20
+ private
21
+
22
+ def perform_legacy_drag(element, drop_modifiers)
23
+ element.scroll_if_needed do
24
+ # browser_action.move_to(element.native).release.perform
25
+ keys_down = modifiers_down(browser_action, drop_modifiers)
26
+ keys_up = modifiers_up(keys_down.move_to(element.native).release, drop_modifiers)
27
+ keys_up.perform
28
+ end
29
+ end
30
+
31
+ def perform_html5_drag(element, delay, drop_modifiers)
32
+ driver.evaluate_async_script HTML5_DRAG_DROP_SCRIPT, self, element, delay * 1000, normalize_keys(drop_modifiers)
33
+ browser_action.release.perform
34
+ end
35
+
36
+ def html5_drop(*args)
37
+ if args[0].is_a? String
38
+ input = driver.evaluate_script ATTACH_FILE
39
+ input.set_file(args)
40
+ driver.execute_script DROP_FILE, self, input
41
+ else
42
+ items = args.each_with_object([]) do |arg, arr|
43
+ arg.each_with_object(arr) do |(type, data), arr_|
44
+ arr_ << { type: type, data: data }
45
+ end
46
+ end
47
+ driver.execute_script DROP_STRING, items, self
48
+ end
49
+ end
50
+
51
+ DROP_STRING = <<~JS
52
+ var strings = arguments[0],
53
+ el = arguments[1],
54
+ dt = new DataTransfer(),
55
+ opts = { cancelable: true, bubbles: true, dataTransfer: dt };
56
+ for (var i=0; i < strings.length; i++){
57
+ if (dt.items) {
58
+ dt.items.add(strings[i]['data'], strings[i]['type']);
59
+ } else {
60
+ dt.setData(strings[i]['type'], strings[i]['data']);
61
+ }
62
+ }
63
+ var dropEvent = new DragEvent('drop', opts);
64
+ el.dispatchEvent(dropEvent);
65
+ JS
66
+
67
+ DROP_FILE = <<~JS
68
+ var el = arguments[0],
69
+ input = arguments[1],
70
+ files = input.files,
71
+ dt = new DataTransfer(),
72
+ opts = { cancelable: true, bubbles: true, dataTransfer: dt };
73
+ input.parentElement.removeChild(input);
74
+ if (dt.items){
75
+ for (var i=0; i<files.length; i++){
76
+ dt.items.add(files[i]);
77
+ }
78
+ } else {
79
+ Object.defineProperty(dt, "files", {
80
+ value: files,
81
+ writable: false
82
+ });
83
+ }
84
+ var dropEvent = new DragEvent('drop', opts);
85
+ el.dispatchEvent(dropEvent);
86
+ JS
87
+
88
+ ATTACH_FILE = <<~JS
89
+ (function(){
90
+ var input = document.createElement('INPUT');
91
+ input.type = "file";
92
+ input.id = "_capybara_drop_file";
93
+ input.multiple = true;
94
+ document.body.appendChild(input);
95
+ return input;
96
+ })()
97
+ JS
98
+
99
+ MOUSEDOWN_TRACKER = <<~JS
100
+ window.capybara_mousedown_prevented = null;
101
+ document.addEventListener('mousedown', ev => {
102
+ window.capybara_mousedown_prevented = ev.defaultPrevented;
103
+ }, { once: true, passive: true })
104
+ JS
105
+
106
+ LEGACY_DRAG_CHECK = <<~JS
107
+ (function(el){
108
+ if ([true, null].indexOf(window.capybara_mousedown_prevented) >= 0){
109
+ return true;
110
+ }
111
+
112
+ do {
113
+ if (el.draggable) return false;
114
+ } while (el = el.parentElement );
115
+ return true;
116
+ })(arguments[0])
117
+ JS
118
+
119
+ HTML5_DRAG_DROP_SCRIPT = <<~JS
120
+ function rectCenter(rect){
121
+ return new DOMPoint(
122
+ (rect.left + rect.right)/2,
123
+ (rect.top + rect.bottom)/2
124
+ );
125
+ }
126
+
127
+ function pointOnRect(pt, rect) {
128
+ var rectPt = rectCenter(rect);
129
+ var slope = (rectPt.y - pt.y) / (rectPt.x - pt.x);
130
+
131
+ if (pt.x <= rectPt.x) { // left side
132
+ var minXy = slope * (rect.left - pt.x) + pt.y;
133
+ if (rect.top <= minXy && minXy <= rect.bottom)
134
+ return new DOMPoint(rect.left, minXy);
135
+ }
136
+
137
+ if (pt.x >= rectPt.x) { // right side
138
+ var maxXy = slope * (rect.right - pt.x) + pt.y;
139
+ if (rect.top <= maxXy && maxXy <= rect.bottom)
140
+ return new DOMPoint(rect.right, maxXy);
141
+ }
142
+
143
+ if (pt.y <= rectPt.y) { // top side
144
+ var minYx = (rectPt.top - pt.y) / slope + pt.x;
145
+ if (rect.left <= minYx && minYx <= rect.right)
146
+ return new DOMPoint(minYx, rect.top);
147
+ }
148
+
149
+ if (pt.y >= rectPt.y) { // bottom side
150
+ var maxYx = (rect.bottom - pt.y) / slope + pt.x;
151
+ if (rect.left <= maxYx && maxYx <= rect.right)
152
+ return new DOMPoint(maxYx, rect.bottom);
153
+ }
154
+
155
+ return new DOMPoint(pt.x,pt.y);
156
+ }
157
+
158
+ function dragEnterTarget() {
159
+ target.scrollIntoView({behavior: 'instant', block: 'center', inline: 'center'});
160
+ var targetRect = target.getBoundingClientRect();
161
+ var sourceCenter = rectCenter(source.getBoundingClientRect());
162
+
163
+ for (var i = 0; i < drop_modifier_keys.length; i++) {
164
+ key = drop_modifier_keys[i];
165
+ if (key == "control"){
166
+ key = "ctrl"
167
+ }
168
+ opts[key + 'Key'] = true;
169
+ }
170
+
171
+ // fire 2 dragover events to simulate dragging with a direction
172
+ var entryPoint = pointOnRect(sourceCenter, targetRect)
173
+ var dragOverOpts = Object.assign({clientX: entryPoint.x, clientY: entryPoint.y}, opts);
174
+ var dragOverEvent = new DragEvent('dragover', dragOverOpts);
175
+ target.dispatchEvent(dragOverEvent);
176
+ window.setTimeout(dragOnTarget, step_delay);
177
+ }
178
+
179
+ function dragOnTarget() {
180
+ var targetCenter = rectCenter(target.getBoundingClientRect());
181
+ var dragOverOpts = Object.assign({clientX: targetCenter.x, clientY: targetCenter.y}, opts);
182
+ var dragOverEvent = new DragEvent('dragover', dragOverOpts);
183
+ target.dispatchEvent(dragOverEvent);
184
+ window.setTimeout(dragLeave, step_delay, dragOverEvent.defaultPrevented, dragOverOpts);
185
+ }
186
+
187
+ function dragLeave(drop, dragOverOpts) {
188
+ var dragLeaveOptions = Object.assign({}, opts, dragOverOpts);
189
+ var dragLeaveEvent = new DragEvent('dragleave', dragLeaveOptions);
190
+ target.dispatchEvent(dragLeaveEvent);
191
+ if (drop) {
192
+ var dropEvent = new DragEvent('drop', dragLeaveOptions);
193
+ target.dispatchEvent(dropEvent);
194
+ }
195
+ var dragEndEvent = new DragEvent('dragend', dragLeaveOptions);
196
+ source.dispatchEvent(dragEndEvent);
197
+ callback.call(true);
198
+ }
199
+
200
+ var source = arguments[0],
201
+ target = arguments[1],
202
+ step_delay = arguments[2],
203
+ drop_modifier_keys = arguments[3],
204
+ callback = arguments[4];
205
+
206
+ var dt = new DataTransfer();
207
+ var opts = { cancelable: true, bubbles: true, dataTransfer: dt };
208
+
209
+ while (source && !source.draggable) {
210
+ source = source.parentElement;
211
+ }
212
+
213
+ if (source.tagName == 'A'){
214
+ dt.setData('text/uri-list', source.href);
215
+ dt.setData('text', source.href);
216
+ }
217
+ if (source.tagName == 'IMG'){
218
+ dt.setData('text/uri-list', source.src);
219
+ dt.setData('text', source.src);
220
+ }
221
+
222
+ var dragEvent = new DragEvent('dragstart', opts);
223
+ source.dispatchEvent(dragEvent);
224
+
225
+ window.setTimeout(dragEnterTarget, step_delay);
226
+ JS
227
+ end
228
+ end
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ class Capybara::Selenium::Node
4
+ #
5
+ # @api private
6
+ #
7
+ class ModifierKeysStack
8
+ def initialize
9
+ @stack = []
10
+ end
11
+
12
+ def include?(key)
13
+ @stack.flatten.include?(key)
14
+ end
15
+
16
+ def press(key)
17
+ @stack.last.push(key)
18
+ end
19
+
20
+ def push
21
+ @stack.push []
22
+ end
23
+
24
+ def pop
25
+ @stack.pop
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,76 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Capybara
4
+ module Selenium
5
+ module Scroll
6
+ def scroll_by(x, y)
7
+ driver.execute_script <<~JS, self, x, y
8
+ var el = arguments[0];
9
+ if (el.scrollBy){
10
+ el.scrollBy(arguments[1], arguments[2]);
11
+ } else {
12
+ el.scrollTop = el.scrollTop + arguments[2];
13
+ el.scrollLeft = el.scrollLeft + arguments[1];
14
+ }
15
+ JS
16
+ end
17
+
18
+ def scroll_to(element, location, position = nil)
19
+ # location, element = element, nil if element.is_a? Symbol
20
+ if element.is_a? Capybara::Selenium::Node
21
+ scroll_element_to_location(element, location)
22
+ elsif location.is_a? Symbol
23
+ scroll_to_location(location)
24
+ else
25
+ scroll_to_coords(*position)
26
+ end
27
+ self
28
+ end
29
+
30
+ private
31
+
32
+ def scroll_element_to_location(element, location)
33
+ scroll_opts = case location
34
+ when :top
35
+ 'true'
36
+ when :bottom
37
+ 'false'
38
+ when :center
39
+ "{behavior: 'instant', block: 'center'}"
40
+ else
41
+ raise ArgumentError, "Invalid scroll_to location: #{location}"
42
+ end
43
+ driver.execute_script <<~JS, element
44
+ arguments[0].scrollIntoView(#{scroll_opts})
45
+ JS
46
+ end
47
+
48
+ SCROLL_POSITIONS = {
49
+ top: '0',
50
+ bottom: 'arguments[0].scrollHeight',
51
+ center: '(arguments[0].scrollHeight - arguments[0].clientHeight)/2'
52
+ }.freeze
53
+
54
+ def scroll_to_location(location)
55
+ driver.execute_script <<~JS, self
56
+ if (arguments[0].scrollTo){
57
+ arguments[0].scrollTo(0, #{SCROLL_POSITIONS[location]});
58
+ } else {
59
+ arguments[0].scrollTop = #{SCROLL_POSITIONS[location]};
60
+ }
61
+ JS
62
+ end
63
+
64
+ def scroll_to_coords(x, y)
65
+ driver.execute_script <<~JS, self, x, y
66
+ if (arguments[0].scrollTo){
67
+ arguments[0].scrollTo(arguments[1], arguments[2]);
68
+ } else {
69
+ arguments[0].scrollTop = arguments[2];
70
+ arguments[0].scrollLeft = arguments[1];
71
+ }
72
+ JS
73
+ end
74
+ end
75
+ end
76
+ end
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Capybara
4
+ module Selenium
5
+ module DeprecationSuppressor
6
+ def initialize(*)
7
+ @suppress_for_capybara = false
8
+ super
9
+ end
10
+
11
+ def deprecate(*args, **opts, &block)
12
+ return if @suppress_for_capybara
13
+
14
+ if opts.empty?
15
+ super(*args, &block) # support Selenium 3
16
+ else
17
+ super
18
+ end
19
+ end
20
+
21
+ def suppress_deprecations
22
+ prev_suppress_for_capybara, @suppress_for_capybara = @suppress_for_capybara, true
23
+ yield
24
+ ensure
25
+ @suppress_for_capybara = prev_suppress_for_capybara
26
+ end
27
+ end
28
+
29
+ module ErrorSuppressor
30
+ def for_code(*)
31
+ ::Selenium::WebDriver.logger.suppress_deprecations do
32
+ super
33
+ end
34
+ end
35
+ end
36
+ end
37
+ end
38
+
39
+ Selenium::WebDriver::Logger.prepend Capybara::Selenium::DeprecationSuppressor
40
+ Selenium::WebDriver::Error.singleton_class.prepend Capybara::Selenium::ErrorSuppressor
@@ -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,457 @@ 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 ==(other)
203
+ native == other.native
204
+ end
205
+
206
+ def path
207
+ driver.evaluate_script GET_XPATH_SCRIPT, self
208
+ end
209
+
210
+ def obscured?(x: nil, y: nil)
211
+ res = driver.evaluate_script(OBSCURED_OR_OFFSET_SCRIPT, self, x, y)
212
+ return true if res == true
213
+
214
+ driver.frame_obscured_at?(x: res['x'], y: res['y'])
215
+ end
216
+
217
+ def rect
218
+ native.rect
219
+ end
220
+
221
+ protected
222
+
223
+ def scroll_if_needed
224
+ yield
225
+ rescue ::Selenium::WebDriver::Error::MoveTargetOutOfBoundsError
226
+ scroll_to_center
227
+ yield
228
+ end
229
+
230
+ def scroll_to_center
231
+ script = <<-'JS'
232
+ try {
233
+ arguments[0].scrollIntoView({behavior: 'instant', block: 'center', inline: 'center'});
234
+ } catch(e) {
235
+ arguments[0].scrollIntoView(true);
236
+ }
237
+ JS
238
+ begin
239
+ driver.execute_script(script, self)
240
+ rescue StandardError
241
+ # Swallow error if scrollIntoView with options isn't supported
242
+ end
243
+ end
244
+
245
+ private
246
+
247
+ def sibling_index(parent, node, selector)
248
+ siblings = parent.find_xpath(selector)
249
+ case siblings.size
250
+ when 0
251
+ '[ERROR]' # IE doesn't support full XPath (namespace-uri, etc)
252
+ when 1
253
+ '' # index not necessary when only one matching element
254
+ else
255
+ idx = siblings.index(node)
256
+ # Element may not be found in the siblings if it has gone away
257
+ idx.nil? ? '[ERROR]' : "[#{idx + 1}]"
258
+ end
259
+ end
260
+
261
+ def boolean_attr(val)
262
+ val && (val != 'false')
263
+ end
264
+
265
+ # a reference to the select node if this is an option node
266
+ def select_node
267
+ find_xpath(XPath.ancestor(:select)[1]).first
268
+ end
269
+
270
+ def set_text(value, clear: nil, rapid: nil, **_unused)
271
+ value = value.to_s
272
+ if value.empty? && clear.nil?
273
+ native.clear
274
+ elsif clear == :backspace
275
+ # Clear field by sending the correct number of backspace keys.
276
+ backspaces = [:backspace] * self.value.to_s.length
277
+ send_keys(*([:end] + backspaces + [value]))
278
+ elsif clear.is_a? Array
279
+ send_keys(*clear, value)
280
+ else
281
+ driver.execute_script 'arguments[0].select()', self unless clear == :none
282
+ if rapid == true || ((value.length > auto_rapid_set_length) && rapid != false)
283
+ send_keys(value[0..3])
284
+ driver.execute_script RAPID_APPEND_TEXT, self, value[4...-3]
285
+ send_keys(value[-3..-1])
145
286
  else
146
- !native.enabled? || !find_xpath("parent::fieldset[@disabled] | ancestor::*[not(self::legend) or preceding-sibling::legend][parent::fieldset[@disabled]]").empty?
287
+ send_keys(value)
147
288
  end
148
- else
149
- !native.enabled?
150
289
  end
151
290
  end
152
291
 
153
- def readonly?
154
- readonly = self[:readonly]
155
- readonly and readonly != "false"
292
+ def auto_rapid_set_length
293
+ 30
294
+ end
295
+
296
+ def perform_with_options(click_options, &block)
297
+ raise ArgumentError, 'A block must be provided' unless block
298
+
299
+ scroll_if_needed do
300
+ action_with_modifiers(click_options) do |action|
301
+ if block_given?
302
+ yield action
303
+ else
304
+ click_options.coords? ? action.click : action.click(native)
305
+ end
306
+ end
307
+ end
156
308
  end
157
309
 
158
- def multiple?
159
- multiple = self[:multiple]
160
- multiple and multiple != "false"
310
+ def set_date(value) # rubocop:disable Naming/AccessorMethodName
311
+ value = SettableValue.new(value)
312
+ return set_text(value) unless value.dateable?
313
+
314
+ # TODO: this would be better if locale can be detected and correct keystrokes sent
315
+ update_value_js(value.to_date_str)
161
316
  end
162
317
 
163
- def content_editable?
164
- native.attribute('isContentEditable')
318
+ def set_time(value) # rubocop:disable Naming/AccessorMethodName
319
+ value = SettableValue.new(value)
320
+ return set_text(value) unless value.timeable?
321
+
322
+ # TODO: this would be better if locale can be detected and correct keystrokes sent
323
+ update_value_js(value.to_time_str)
165
324
  end
166
325
 
167
- def find_xpath(locator)
168
- native.find_elements(:xpath, locator).map { |n| self.class.new(driver, n) }
326
+ def set_datetime_local(value) # rubocop:disable Naming/AccessorMethodName
327
+ value = SettableValue.new(value)
328
+ return set_text(value) unless value.timeable?
329
+
330
+ # TODO: this would be better if locale can be detected and correct keystrokes sent
331
+ update_value_js(value.to_datetime_str)
169
332
  end
170
333
 
171
- def find_css(locator)
172
- native.find_elements(:css, locator).map { |n| self.class.new(driver, n) }
334
+ def set_color(value) # rubocop:disable Naming/AccessorMethodName
335
+ update_value_js(value)
173
336
  end
174
337
 
175
- def ==(other)
176
- native == other.native
338
+ def set_range(value) # rubocop:disable Naming/AccessorMethodName
339
+ update_value_js(value)
177
340
  end
178
341
 
179
- def path
180
- path = find_xpath('ancestor::*').reverse
181
- path.unshift self
342
+ def update_value_js(value)
343
+ driver.execute_script(<<-JS, self, value)
344
+ if (arguments[0].readOnly) { return };
345
+ if (document.activeElement !== arguments[0]){
346
+ arguments[0].focus();
347
+ }
348
+ if (arguments[0].value != arguments[1]) {
349
+ arguments[0].value = arguments[1]
350
+ arguments[0].dispatchEvent(new InputEvent('input'));
351
+ arguments[0].dispatchEvent(new Event('change', { bubbles: true }));
352
+ }
353
+ JS
354
+ end
182
355
 
183
- result = []
184
- while node = path.shift
185
- parent = path.first
356
+ def set_file(value) # rubocop:disable Naming/AccessorMethodName
357
+ with_file_detector do
358
+ path_names = value.to_s.empty? ? [] : value
359
+ file_names = Array(path_names).map do |pn|
360
+ Pathname.new(pn).absolute? ? pn : File.expand_path(pn)
361
+ end.join("\n")
362
+ native.send_keys(file_names)
363
+ end
364
+ end
186
365
 
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}]"
366
+ def with_file_detector
367
+ if driver.options[:browser] == :remote &&
368
+ bridge.respond_to?(:file_detector) &&
369
+ bridge.file_detector.nil?
370
+ begin
371
+ bridge.file_detector = lambda do |(fn, *)|
372
+ str = fn.to_s
373
+ str if File.exist?(str)
194
374
  end
375
+ yield
376
+ ensure
377
+ bridge.file_detector = nil
378
+ end
379
+ else
380
+ yield
381
+ end
382
+ end
383
+
384
+ def set_content_editable(value) # rubocop:disable Naming/AccessorMethodName
385
+ # Ensure we are focused on the element
386
+ click
387
+
388
+ editable = driver.execute_script <<-JS, self
389
+ if (arguments[0].isContentEditable) {
390
+ var range = document.createRange();
391
+ var sel = window.getSelection();
392
+ arguments[0].focus();
393
+ range.selectNodeContents(arguments[0]);
394
+ sel.removeAllRanges();
395
+ sel.addRange(range);
396
+ return true;
397
+ }
398
+ return false;
399
+ JS
400
+
401
+ # The action api has a speed problem but both chrome and firefox 58 raise errors
402
+ # if we use the faster direct send_keys. For now just send_keys to the element
403
+ # we've already focused.
404
+ # native.send_keys(value.to_s)
405
+ browser_action.send_keys(value.to_s).perform if editable
406
+ end
407
+
408
+ def action_with_modifiers(click_options)
409
+ actions = browser_action.tap do |acts|
410
+ if click_options.center_offset? && click_options.coords?
411
+ acts.move_to(native).move_by(*click_options.coords)
195
412
  else
196
- result.unshift node.tag_name
413
+ acts.move_to(native, *click_options.coords)
197
414
  end
198
415
  end
416
+ modifiers_down(actions, click_options.keys)
417
+ yield actions
418
+ modifiers_up(actions, click_options.keys)
419
+ actions.perform
420
+ ensure
421
+ act = browser_action
422
+ act.release_actions if act.respond_to?(:release_actions)
423
+ end
199
424
 
200
- '/' + result.join('/')
425
+ def modifiers_down(actions, keys)
426
+ each_key(keys) { |key| actions.key_down(key) }
427
+ actions
201
428
  end
202
429
 
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
430
+ def modifiers_up(actions, keys)
431
+ each_key(keys) { |key| actions.key_up(key) }
432
+ actions
207
433
  end
208
434
 
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)
435
+ def browser
436
+ driver.browser
437
+ end
438
+
439
+ def bridge
440
+ browser.send(:bridge)
441
+ end
442
+
443
+ def browser_action
444
+ browser.action
445
+ end
446
+
447
+ def capabilities
448
+ browser.capabilities
449
+ end
450
+
451
+ def w3c?
452
+ (defined?(Selenium::WebDriver::VERSION) && (Selenium::WebDriver::VERSION.to_f >= 4)) ||
453
+ capabilities.is_a?(::Selenium::WebDriver::Remote::W3C::Capabilities)
454
+ end
455
+
456
+ def normalize_keys(keys)
457
+ keys.map do |key|
458
+ case key
459
+ when :ctrl then :control
460
+ when :command, :cmd then :meta
223
461
  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)
462
+ key
229
463
  end
230
464
  end
231
465
  end
466
+
467
+ def each_key(keys, &block)
468
+ normalize_keys(keys).each(&block)
469
+ end
470
+
471
+ def find_context
472
+ native
473
+ end
474
+
475
+ def build_node(native_node, initial_cache = {})
476
+ self.class.new(driver, native_node, initial_cache)
477
+ end
478
+
479
+ def attrs(*attr_names)
480
+ return attr_names.map { |name| self[name.to_s] } if ENV['CAPYBARA_THOROUGH']
481
+
482
+ driver.evaluate_script <<~'JS', self, attr_names.map(&:to_s)
483
+ (function(el, names){
484
+ return names.map(function(name){
485
+ return el[name]
486
+ });
487
+ })(arguments[0], arguments[1]);
488
+ JS
489
+ end
490
+
491
+ GET_XPATH_SCRIPT = <<~'JS'
492
+ (function(el, xml){
493
+ var xpath = '';
494
+ var pos, tempitem2;
495
+
496
+ if (el.getRootNode && el.getRootNode() instanceof ShadowRoot) {
497
+ return "(: Shadow DOM element - no XPath :)";
498
+ };
499
+ while(el !== xml.documentElement) {
500
+ pos = 0;
501
+ tempitem2 = el;
502
+ while(tempitem2) {
503
+ if (tempitem2.nodeType === 1 && tempitem2.nodeName === el.nodeName) { // If it is ELEMENT_NODE of the same name
504
+ pos += 1;
505
+ }
506
+ tempitem2 = tempitem2.previousSibling;
507
+ }
508
+
509
+ if (el.namespaceURI != xml.documentElement.namespaceURI) {
510
+ xpath = "*[local-name()='"+el.nodeName+"' and namespace-uri()='"+(el.namespaceURI===null?'':el.namespaceURI)+"']["+pos+']'+'/'+xpath;
511
+ } else {
512
+ xpath = el.nodeName.toUpperCase()+"["+pos+"]/"+xpath;
513
+ }
514
+
515
+ el = el.parentNode;
516
+ }
517
+ xpath = '/'+xml.documentElement.nodeName.toUpperCase()+'/'+xpath;
518
+ xpath = xpath.replace(/\/$/, '');
519
+ return xpath;
520
+ })(arguments[0], document)
521
+ JS
522
+
523
+ OBSCURED_OR_OFFSET_SCRIPT = <<~'JS'
524
+ (function(el, x, y) {
525
+ var box = el.getBoundingClientRect();
526
+ if (x == null) x = box.width/2;
527
+ if (y == null) y = box.height/2 ;
528
+
529
+ var px = box.left + x,
530
+ py = box.top + y,
531
+ e = document.elementFromPoint(px, py);
532
+
533
+ if (!el.contains(e))
534
+ return true;
535
+
536
+ return { x: px, y: py };
537
+ })(arguments[0], arguments[1], arguments[2])
538
+ JS
539
+
540
+ RAPID_APPEND_TEXT = <<~'JS'
541
+ (function(el, value) {
542
+ value = el.value + value;
543
+ if (el.maxLength && el.maxLength != -1){
544
+ value = value.slice(0, el.maxLength);
545
+ }
546
+ el.value = value;
547
+ })(arguments[0], arguments[1])
548
+ JS
549
+
550
+ # SettableValue encapsulates time/date field formatting
551
+ class SettableValue
552
+ attr_reader :value
553
+
554
+ def initialize(value)
555
+ @value = value
556
+ end
557
+
558
+ def to_s
559
+ value.to_s
560
+ end
561
+
562
+ def dateable?
563
+ !value.is_a?(String) && value.respond_to?(:to_date)
564
+ end
565
+
566
+ def to_date_str
567
+ value.to_date.iso8601
568
+ end
569
+
570
+ def timeable?
571
+ !value.is_a?(String) && value.respond_to?(:to_time)
572
+ end
573
+
574
+ def to_time_str
575
+ value.to_time.strftime('%H:%M')
576
+ end
577
+
578
+ def to_datetime_str
579
+ value.to_time.strftime('%Y-%m-%dT%H:%M')
580
+ end
581
+ end
582
+ private_constant :SettableValue
583
+
584
+ # ClickOptions encapsulates click option logic
585
+ class ClickOptions
586
+ attr_reader :keys, :options
587
+
588
+ def initialize(keys, options)
589
+ @keys = keys
590
+ @options = options
591
+ end
592
+
593
+ def coords?
594
+ options[:x] && options[:y]
595
+ end
596
+
597
+ def coords
598
+ [options[:x], options[:y]]
599
+ end
600
+
601
+ def center_offset?
602
+ options[:offset] == :center
603
+ end
604
+
605
+ def empty?
606
+ keys.empty? && !coords? && delay.zero?
607
+ end
608
+
609
+ def delay
610
+ options[:delay] || 0
611
+ end
612
+ end
613
+ private_constant :ClickOptions
232
614
  end