capybara 2.15.1 → 3.35.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (298) hide show
  1. checksums.yaml +5 -5
  2. data/.yardopts +1 -1
  3. data/History.md +871 -9
  4. data/License.txt +1 -1
  5. data/README.md +99 -75
  6. data/lib/capybara/config.rb +20 -59
  7. data/lib/capybara/cucumber.rb +2 -3
  8. data/lib/capybara/driver/base.rb +35 -18
  9. data/lib/capybara/driver/node.rb +35 -9
  10. data/lib/capybara/dsl.rb +15 -6
  11. data/lib/capybara/helpers.rb +72 -28
  12. data/lib/capybara/minitest/spec.rb +173 -81
  13. data/lib/capybara/minitest.rb +220 -111
  14. data/lib/capybara/node/actions.rb +270 -172
  15. data/lib/capybara/node/base.rb +41 -34
  16. data/lib/capybara/node/document.rb +15 -3
  17. data/lib/capybara/node/document_matchers.rb +19 -21
  18. data/lib/capybara/node/element.rb +353 -137
  19. data/lib/capybara/node/finders.rb +144 -138
  20. data/lib/capybara/node/matchers.rb +369 -209
  21. data/lib/capybara/node/simple.rb +55 -26
  22. data/lib/capybara/queries/ancestor_query.rb +11 -9
  23. data/lib/capybara/queries/base_query.rb +39 -28
  24. data/lib/capybara/queries/current_path_query.rb +22 -25
  25. data/lib/capybara/queries/match_query.rb +14 -7
  26. data/lib/capybara/queries/selector_query.rb +633 -145
  27. data/lib/capybara/queries/sibling_query.rb +10 -9
  28. data/lib/capybara/queries/style_query.rb +45 -0
  29. data/lib/capybara/queries/text_query.rb +56 -38
  30. data/lib/capybara/queries/title_query.rb +8 -11
  31. data/lib/capybara/rack_test/browser.rb +57 -41
  32. data/lib/capybara/rack_test/css_handlers.rb +6 -4
  33. data/lib/capybara/rack_test/driver.rb +18 -13
  34. data/lib/capybara/rack_test/errors.rb +6 -0
  35. data/lib/capybara/rack_test/form.rb +73 -58
  36. data/lib/capybara/rack_test/node.rb +182 -78
  37. data/lib/capybara/rails.rb +3 -7
  38. data/lib/capybara/registration_container.rb +44 -0
  39. data/lib/capybara/registrations/drivers.rb +42 -0
  40. data/lib/capybara/registrations/patches/puma_ssl.rb +29 -0
  41. data/lib/capybara/registrations/servers.rb +45 -0
  42. data/lib/capybara/result.rb +96 -62
  43. data/lib/capybara/rspec/features.rb +17 -50
  44. data/lib/capybara/rspec/matcher_proxies.rb +51 -14
  45. data/lib/capybara/rspec/matchers/base.rb +111 -0
  46. data/lib/capybara/rspec/matchers/become_closed.rb +33 -0
  47. data/lib/capybara/rspec/matchers/compound.rb +88 -0
  48. data/lib/capybara/rspec/matchers/count_sugar.rb +37 -0
  49. data/lib/capybara/rspec/matchers/have_ancestor.rb +28 -0
  50. data/lib/capybara/rspec/matchers/have_current_path.rb +29 -0
  51. data/lib/capybara/rspec/matchers/have_selector.rb +77 -0
  52. data/lib/capybara/rspec/matchers/have_sibling.rb +27 -0
  53. data/lib/capybara/rspec/matchers/have_text.rb +33 -0
  54. data/lib/capybara/rspec/matchers/have_title.rb +29 -0
  55. data/lib/capybara/rspec/matchers/match_selector.rb +27 -0
  56. data/lib/capybara/rspec/matchers/match_style.rb +43 -0
  57. data/lib/capybara/rspec/matchers/spatial_sugar.rb +39 -0
  58. data/lib/capybara/rspec/matchers.rb +144 -264
  59. data/lib/capybara/rspec.rb +7 -11
  60. data/lib/capybara/selector/builders/css_builder.rb +84 -0
  61. data/lib/capybara/selector/builders/xpath_builder.rb +71 -0
  62. data/lib/capybara/selector/css.rb +89 -17
  63. data/lib/capybara/selector/definition/button.rb +63 -0
  64. data/lib/capybara/selector/definition/checkbox.rb +26 -0
  65. data/lib/capybara/selector/definition/css.rb +10 -0
  66. data/lib/capybara/selector/definition/datalist_input.rb +35 -0
  67. data/lib/capybara/selector/definition/datalist_option.rb +25 -0
  68. data/lib/capybara/selector/definition/element.rb +28 -0
  69. data/lib/capybara/selector/definition/field.rb +40 -0
  70. data/lib/capybara/selector/definition/fieldset.rb +14 -0
  71. data/lib/capybara/selector/definition/file_field.rb +13 -0
  72. data/lib/capybara/selector/definition/fillable_field.rb +33 -0
  73. data/lib/capybara/selector/definition/frame.rb +17 -0
  74. data/lib/capybara/selector/definition/id.rb +6 -0
  75. data/lib/capybara/selector/definition/label.rb +62 -0
  76. data/lib/capybara/selector/definition/link.rb +54 -0
  77. data/lib/capybara/selector/definition/link_or_button.rb +16 -0
  78. data/lib/capybara/selector/definition/option.rb +27 -0
  79. data/lib/capybara/selector/definition/radio_button.rb +27 -0
  80. data/lib/capybara/selector/definition/select.rb +81 -0
  81. data/lib/capybara/selector/definition/table.rb +109 -0
  82. data/lib/capybara/selector/definition/table_row.rb +21 -0
  83. data/lib/capybara/selector/definition/xpath.rb +5 -0
  84. data/lib/capybara/selector/definition.rb +278 -0
  85. data/lib/capybara/selector/filter.rb +2 -17
  86. data/lib/capybara/selector/filter_set.rb +83 -33
  87. data/lib/capybara/selector/filters/base.rb +50 -6
  88. data/lib/capybara/selector/filters/expression_filter.rb +8 -26
  89. data/lib/capybara/selector/filters/locator_filter.rb +29 -0
  90. data/lib/capybara/selector/filters/node_filter.rb +16 -12
  91. data/lib/capybara/selector/regexp_disassembler.rb +214 -0
  92. data/lib/capybara/selector/selector.rb +89 -210
  93. data/lib/capybara/selector/xpath_extensions.rb +17 -0
  94. data/lib/capybara/selector.rb +226 -526
  95. data/lib/capybara/selenium/atoms/getAttribute.min.js +1 -0
  96. data/lib/capybara/selenium/atoms/isDisplayed.min.js +1 -0
  97. data/lib/capybara/selenium/atoms/src/getAttribute.js +161 -0
  98. data/lib/capybara/selenium/atoms/src/isDisplayed.js +454 -0
  99. data/lib/capybara/selenium/driver.rb +334 -277
  100. data/lib/capybara/selenium/driver_specializations/chrome_driver.rb +117 -0
  101. data/lib/capybara/selenium/driver_specializations/edge_driver.rb +124 -0
  102. data/lib/capybara/selenium/driver_specializations/firefox_driver.rb +89 -0
  103. data/lib/capybara/selenium/driver_specializations/internet_explorer_driver.rb +26 -0
  104. data/lib/capybara/selenium/driver_specializations/safari_driver.rb +24 -0
  105. data/lib/capybara/selenium/extensions/file_input_click_emulation.rb +34 -0
  106. data/lib/capybara/selenium/extensions/find.rb +110 -0
  107. data/lib/capybara/selenium/extensions/html5_drag.rb +228 -0
  108. data/lib/capybara/selenium/extensions/modifier_keys_stack.rb +28 -0
  109. data/lib/capybara/selenium/extensions/scroll.rb +76 -0
  110. data/lib/capybara/selenium/logger_suppressor.rb +40 -0
  111. data/lib/capybara/selenium/node.rb +506 -124
  112. data/lib/capybara/selenium/nodes/chrome_node.rb +137 -0
  113. data/lib/capybara/selenium/nodes/edge_node.rb +104 -0
  114. data/lib/capybara/selenium/nodes/firefox_node.rb +136 -0
  115. data/lib/capybara/selenium/nodes/ie_node.rb +22 -0
  116. data/lib/capybara/selenium/nodes/safari_node.rb +118 -0
  117. data/lib/capybara/selenium/patches/action_pauser.rb +26 -0
  118. data/lib/capybara/selenium/patches/atoms.rb +18 -0
  119. data/lib/capybara/selenium/patches/is_displayed.rb +16 -0
  120. data/lib/capybara/selenium/patches/logs.rb +45 -0
  121. data/lib/capybara/selenium/patches/pause_duration_fix.rb +9 -0
  122. data/lib/capybara/selenium/patches/persistent_client.rb +20 -0
  123. data/lib/capybara/server/animation_disabler.rb +63 -0
  124. data/lib/capybara/server/checker.rb +44 -0
  125. data/lib/capybara/server/middleware.rb +71 -0
  126. data/lib/capybara/server.rb +59 -67
  127. data/lib/capybara/session/config.rb +79 -59
  128. data/lib/capybara/session/matchers.rb +41 -25
  129. data/lib/capybara/session.rb +360 -356
  130. data/lib/capybara/spec/public/jquery.js +5 -5
  131. data/lib/capybara/spec/public/offset.js +6 -0
  132. data/lib/capybara/spec/public/test.js +159 -13
  133. data/lib/capybara/spec/session/accept_alert_spec.rb +12 -11
  134. data/lib/capybara/spec/session/accept_confirm_spec.rb +6 -5
  135. data/lib/capybara/spec/session/accept_prompt_spec.rb +34 -6
  136. data/lib/capybara/spec/session/all_spec.rb +163 -55
  137. data/lib/capybara/spec/session/ancestor_spec.rb +27 -24
  138. data/lib/capybara/spec/session/assert_all_of_selectors_spec.rb +68 -38
  139. data/lib/capybara/spec/session/assert_current_path_spec.rb +75 -0
  140. data/lib/capybara/spec/session/assert_selector_spec.rb +143 -0
  141. data/lib/capybara/spec/session/assert_style_spec.rb +26 -0
  142. data/lib/capybara/spec/session/{assert_text.rb → assert_text_spec.rb} +91 -59
  143. data/lib/capybara/spec/session/{assert_title.rb → assert_title_spec.rb} +22 -12
  144. data/lib/capybara/spec/session/attach_file_spec.rb +138 -69
  145. data/lib/capybara/spec/session/body_spec.rb +12 -13
  146. data/lib/capybara/spec/session/check_spec.rb +107 -55
  147. data/lib/capybara/spec/session/choose_spec.rb +58 -31
  148. data/lib/capybara/spec/session/click_button_spec.rb +231 -173
  149. data/lib/capybara/spec/session/click_link_or_button_spec.rb +55 -35
  150. data/lib/capybara/spec/session/click_link_spec.rb +82 -58
  151. data/lib/capybara/spec/session/current_scope_spec.rb +11 -10
  152. data/lib/capybara/spec/session/current_url_spec.rb +57 -39
  153. data/lib/capybara/spec/session/dismiss_confirm_spec.rb +4 -4
  154. data/lib/capybara/spec/session/dismiss_prompt_spec.rb +3 -2
  155. data/lib/capybara/spec/session/element/{assert_match_selector.rb → assert_match_selector_spec.rb} +11 -9
  156. data/lib/capybara/spec/session/element/match_css_spec.rb +18 -10
  157. data/lib/capybara/spec/session/element/match_xpath_spec.rb +9 -7
  158. data/lib/capybara/spec/session/element/matches_selector_spec.rb +71 -57
  159. data/lib/capybara/spec/session/evaluate_async_script_spec.rb +23 -0
  160. data/lib/capybara/spec/session/evaluate_script_spec.rb +30 -9
  161. data/lib/capybara/spec/session/execute_script_spec.rb +10 -8
  162. data/lib/capybara/spec/session/fill_in_spec.rb +128 -43
  163. data/lib/capybara/spec/session/find_button_spec.rb +25 -24
  164. data/lib/capybara/spec/session/find_by_id_spec.rb +10 -9
  165. data/lib/capybara/spec/session/find_field_spec.rb +37 -41
  166. data/lib/capybara/spec/session/find_link_spec.rb +36 -17
  167. data/lib/capybara/spec/session/find_spec.rb +245 -144
  168. data/lib/capybara/spec/session/first_spec.rb +79 -51
  169. data/lib/capybara/spec/session/frame/frame_title_spec.rb +23 -0
  170. data/lib/capybara/spec/session/frame/frame_url_spec.rb +23 -0
  171. data/lib/capybara/spec/session/frame/switch_to_frame_spec.rb +33 -20
  172. data/lib/capybara/spec/session/frame/within_frame_spec.rb +50 -32
  173. data/lib/capybara/spec/session/go_back_spec.rb +2 -1
  174. data/lib/capybara/spec/session/go_forward_spec.rb +2 -1
  175. data/lib/capybara/spec/session/has_all_selectors_spec.rb +69 -0
  176. data/lib/capybara/spec/session/has_ancestor_spec.rb +46 -0
  177. data/lib/capybara/spec/session/has_any_selectors_spec.rb +25 -0
  178. data/lib/capybara/spec/session/has_button_spec.rb +70 -13
  179. data/lib/capybara/spec/session/has_css_spec.rb +272 -137
  180. data/lib/capybara/spec/session/has_current_path_spec.rb +87 -45
  181. data/lib/capybara/spec/session/has_field_spec.rb +115 -59
  182. data/lib/capybara/spec/session/has_link_spec.rb +10 -9
  183. data/lib/capybara/spec/session/has_none_selectors_spec.rb +78 -0
  184. data/lib/capybara/spec/session/has_select_spec.rb +103 -74
  185. data/lib/capybara/spec/session/has_selector_spec.rb +105 -71
  186. data/lib/capybara/spec/session/has_sibling_spec.rb +50 -0
  187. data/lib/capybara/spec/session/has_table_spec.rb +172 -5
  188. data/lib/capybara/spec/session/has_text_spec.rb +113 -61
  189. data/lib/capybara/spec/session/has_title_spec.rb +20 -14
  190. data/lib/capybara/spec/session/has_xpath_spec.rb +57 -38
  191. data/lib/capybara/spec/session/{headers.rb → headers_spec.rb} +3 -2
  192. data/lib/capybara/spec/session/html_spec.rb +14 -6
  193. data/lib/capybara/spec/session/matches_style_spec.rb +35 -0
  194. data/lib/capybara/spec/session/node_spec.rb +950 -152
  195. data/lib/capybara/spec/session/node_wrapper_spec.rb +39 -0
  196. data/lib/capybara/spec/session/refresh_spec.rb +12 -6
  197. data/lib/capybara/spec/session/reset_session_spec.rb +69 -35
  198. data/lib/capybara/spec/session/{response_code.rb → response_code_spec.rb} +2 -1
  199. data/lib/capybara/spec/session/save_and_open_page_spec.rb +3 -2
  200. data/lib/capybara/spec/session/save_and_open_screenshot_spec.rb +8 -12
  201. data/lib/capybara/spec/session/save_page_spec.rb +42 -55
  202. data/lib/capybara/spec/session/save_screenshot_spec.rb +16 -14
  203. data/lib/capybara/spec/session/screenshot_spec.rb +2 -2
  204. data/lib/capybara/spec/session/scroll_spec.rb +117 -0
  205. data/lib/capybara/spec/session/select_spec.rb +107 -80
  206. data/lib/capybara/spec/session/selectors_spec.rb +52 -19
  207. data/lib/capybara/spec/session/sibling_spec.rb +10 -10
  208. data/lib/capybara/spec/session/text_spec.rb +37 -21
  209. data/lib/capybara/spec/session/title_spec.rb +17 -5
  210. data/lib/capybara/spec/session/uncheck_spec.rb +42 -22
  211. data/lib/capybara/spec/session/unselect_spec.rb +39 -38
  212. data/lib/capybara/spec/session/visit_spec.rb +99 -32
  213. data/lib/capybara/spec/session/window/become_closed_spec.rb +24 -20
  214. data/lib/capybara/spec/session/window/current_window_spec.rb +5 -3
  215. data/lib/capybara/spec/session/window/open_new_window_spec.rb +5 -3
  216. data/lib/capybara/spec/session/window/switch_to_window_spec.rb +27 -22
  217. data/lib/capybara/spec/session/window/window_opened_by_spec.rb +12 -6
  218. data/lib/capybara/spec/session/window/window_spec.rb +97 -63
  219. data/lib/capybara/spec/session/window/windows_spec.rb +12 -10
  220. data/lib/capybara/spec/session/window/within_window_spec.rb +31 -86
  221. data/lib/capybara/spec/session/within_spec.rb +70 -44
  222. data/lib/capybara/spec/spec_helper.rb +48 -43
  223. data/lib/capybara/spec/test_app.rb +78 -40
  224. data/lib/capybara/spec/views/animated.erb +49 -0
  225. data/lib/capybara/spec/views/form.erb +130 -39
  226. data/lib/capybara/spec/views/frame_child.erb +3 -2
  227. data/lib/capybara/spec/views/frame_one.erb +1 -0
  228. data/lib/capybara/spec/views/initial_alert.erb +10 -0
  229. data/lib/capybara/spec/views/obscured.erb +47 -0
  230. data/lib/capybara/spec/views/offset.erb +32 -0
  231. data/lib/capybara/spec/views/react.erb +45 -0
  232. data/lib/capybara/spec/views/scroll.erb +20 -0
  233. data/lib/capybara/spec/views/spatial.erb +31 -0
  234. data/lib/capybara/spec/views/tables.erb +68 -1
  235. data/lib/capybara/spec/views/with_animation.erb +82 -0
  236. data/lib/capybara/spec/views/with_dragula.erb +24 -0
  237. data/lib/capybara/spec/views/with_fixed_header_footer.erb +17 -0
  238. data/lib/capybara/spec/views/with_hover.erb +6 -0
  239. data/lib/capybara/spec/views/with_hover1.erb +10 -0
  240. data/lib/capybara/spec/views/with_html.erb +69 -10
  241. data/lib/capybara/spec/views/with_html5_svg.erb +20 -0
  242. data/lib/capybara/spec/views/with_jquery_animation.erb +24 -0
  243. data/lib/capybara/spec/views/with_js.erb +37 -0
  244. data/lib/capybara/spec/views/with_jstree.erb +26 -0
  245. data/lib/capybara/spec/views/with_namespace.erb +20 -0
  246. data/lib/capybara/spec/views/with_scope_other.erb +6 -0
  247. data/lib/capybara/spec/views/with_sortable_js.erb +21 -0
  248. data/lib/capybara/spec/views/within_frames.erb +4 -1
  249. data/lib/capybara/version.rb +2 -1
  250. data/lib/capybara/window.rb +35 -33
  251. data/lib/capybara.rb +131 -104
  252. data/spec/basic_node_spec.rb +47 -34
  253. data/spec/capybara_spec.rb +53 -104
  254. data/spec/css_builder_spec.rb +101 -0
  255. data/spec/css_splitter_spec.rb +38 -0
  256. data/spec/dsl_spec.rb +81 -62
  257. data/spec/filter_set_spec.rb +27 -9
  258. data/spec/fixtures/certificate.pem +25 -0
  259. data/spec/fixtures/key.pem +27 -0
  260. data/spec/fixtures/selenium_driver_rspec_failure.rb +5 -4
  261. data/spec/fixtures/selenium_driver_rspec_success.rb +5 -4
  262. data/spec/minitest_spec.rb +49 -7
  263. data/spec/minitest_spec_spec.rb +94 -59
  264. data/spec/per_session_config_spec.rb +14 -13
  265. data/spec/rack_test_spec.rb +176 -125
  266. data/spec/regexp_dissassembler_spec.rb +250 -0
  267. data/spec/result_spec.rb +101 -46
  268. data/spec/rspec/features_spec.rb +37 -31
  269. data/spec/rspec/scenarios_spec.rb +9 -7
  270. data/spec/rspec/shared_spec_matchers.rb +448 -421
  271. data/spec/rspec/views_spec.rb +5 -3
  272. data/spec/rspec_matchers_spec.rb +27 -11
  273. data/spec/rspec_spec.rb +109 -89
  274. data/spec/sauce_spec_chrome.rb +43 -0
  275. data/spec/selector_spec.rb +396 -67
  276. data/spec/selenium_spec_chrome.rb +184 -35
  277. data/spec/selenium_spec_chrome_remote.rb +100 -0
  278. data/spec/selenium_spec_edge.rb +47 -0
  279. data/spec/selenium_spec_firefox.rb +183 -41
  280. data/spec/selenium_spec_firefox_remote.rb +80 -0
  281. data/spec/selenium_spec_ie.rb +150 -0
  282. data/spec/selenium_spec_safari.rb +148 -0
  283. data/spec/server_spec.rb +198 -99
  284. data/spec/session_spec.rb +53 -16
  285. data/spec/shared_selenium_node.rb +83 -0
  286. data/spec/shared_selenium_session.rb +486 -97
  287. data/spec/spec_helper.rb +93 -7
  288. data/spec/xpath_builder_spec.rb +93 -0
  289. metadata +338 -64
  290. data/.yard/templates_custom/default/class/html/selectors.erb +0 -38
  291. data/.yard/templates_custom/default/class/html/setup.rb +0 -17
  292. data/.yard/yard_extensions.rb +0 -78
  293. data/lib/capybara/query.rb +0 -7
  294. data/lib/capybara/rspec/compound.rb +0 -95
  295. data/lib/capybara/spec/session/assert_current_path.rb +0 -72
  296. data/lib/capybara/spec/session/assert_selector.rb +0 -148
  297. data/lib/capybara/spec/session/source_spec.rb +0 -0
  298. data/spec/selenium_spec_marionette.rb +0 -117
@@ -1,317 +1,415 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module Capybara
3
4
  module Node
4
5
  module Actions
5
-
6
- ##
7
- #
8
- # Finds a button or link by id, text or value and clicks it. Also looks at image
9
- # alt text inside the link.
10
6
  # @!macro waiting_behavior
11
- # If the driver is capable of executing JavaScript, +$0+ will wait for a set amount of time
7
+ # If the driver is capable of executing JavaScript, this method will wait for a set amount of time
12
8
  # and continuously retry finding the element until either the element is found or the time
13
- # expires. The length of time +find+ will wait is controlled through {Capybara.default_max_wait_time}
9
+ # expires. The length of time this method will wait is controlled through {Capybara.configure default_max_wait_time}.
14
10
  #
15
- # @option options [false, Numeric] wait (Capybara.default_max_wait_time) Maximum time to wait for matching element to appear.
11
+ # @option options [false, true, Numeric] wait
12
+ # Maximum time to wait for matching element to appear. Defaults to {Capybara.configure default_max_wait_time}.
13
+
14
+ ##
16
15
  #
17
- # @overload click_link_or_button([locator], options)
16
+ # Finds a button or link and clicks it. See {#click_button} and
17
+ # {#click_link} for what locator will match against for each type of element.
18
18
  #
19
- # @param [String] locator Text, id or value of link or button
19
+ # @overload click_link_or_button([locator], **options)
20
+ # @macro waiting_behavior
21
+ # @param [String] locator See {#click_button} and {#click_link}
20
22
  #
21
23
  # @return [Capybara::Node::Element] The element clicked
22
24
  #
23
- def click_link_or_button(locator=nil, options={})
24
- locator, options = nil, locator if locator.is_a? Hash
25
- find(:link_or_button, locator, options).click
25
+ def click_link_or_button(locator = nil, **options)
26
+ find(:link_or_button, locator, **options).click
26
27
  end
27
28
  alias_method :click_on, :click_link_or_button
28
29
 
29
30
  ##
30
31
  #
31
- # Finds a link by id, text or title and clicks it. Also looks at image
32
+ # Finds a link by id, {Capybara.configure test_id} attribute, text or title and clicks it. Also looks at image
32
33
  # alt text inside the link.
33
34
  #
34
- # @macro waiting_behavior
35
- #
36
- # @overload click_link([locator], options)
37
- # @param [String] locator text, id, title or nested image's alt attribute
38
- # @param options See {Capybara::Node::Finders#find_link}
35
+ # @overload click_link([locator], **options)
36
+ # @macro waiting_behavior
37
+ # @param [String] locator text, id, {Capybara.configure test_id} attribute, title or nested image's alt attribute
38
+ # @param [Hash] options See {Capybara::Node::Finders#find_link}
39
39
  #
40
40
  # @return [Capybara::Node::Element] The element clicked
41
- def click_link(locator=nil, options={})
42
- locator, options = nil, locator if locator.is_a? Hash
43
- find(:link, locator, options).click
41
+ def click_link(locator = nil, **options)
42
+ find(:link, locator, **options).click
44
43
  end
45
44
 
46
45
  ##
47
46
  #
48
47
  # Finds a button on the page and clicks it.
49
- # This can be any \<input> element of type submit, reset, image, button or it can be a
50
- # \<button> element. All buttons can be found by their id, value, or title. \<button> elements can also be found
51
- # by their text content, and image \<input> elements by their alt attribute
48
+ # This can be any `<input>` element of type submit, reset, image, button or it can be a
49
+ # `<button>` element. All buttons can be found by their id, name, {Capybara.configure test_id} attribute, value, or title. `<button>` elements can also be found
50
+ # by their text content, and image `<input>` elements by their alt attribute.
52
51
  #
53
- # @macro waiting_behavior
54
- #
55
- # @overload click_button([locator], options)
52
+ # @overload click_button([locator], **options)
53
+ # @macro waiting_behavior
56
54
  # @param [String] locator Which button to find
57
- # @param options See {Capybara::Node::Finders#find_button}
55
+ # @param [Hash] options See {Capybara::Node::Finders#find_button}
58
56
  # @return [Capybara::Node::Element] The element clicked
59
- def click_button(locator=nil, options={})
60
- locator, options = nil, locator if locator.is_a? Hash
61
- find(:button, locator, options).click
57
+ def click_button(locator = nil, **options)
58
+ find(:button, locator, **options).click
62
59
  end
63
60
 
64
61
  ##
65
62
  #
66
- # Locate a text field or text area and fill it in with the given text
67
- # The field can be found via its name, id or label text.
63
+ # Locate a text field or text area and fill it in with the given text.
64
+ # The field can be found via its name, id, {Capybara.configure test_id} attribute, placeholder, or label text.
65
+ # If no locator is provided this will operate on self or a descendant.
68
66
  #
67
+ # # will fill in a descendant fillable field with name, id, or label text matching 'Name'
69
68
  # page.fill_in 'Name', with: 'Bob'
70
69
  #
70
+ # # will fill in `el` if it's a fillable field
71
+ # el.fill_in with: 'Tom'
71
72
  #
72
- # @overload fill_in([locator], options={})
73
+ #
74
+ # @overload fill_in([locator], with:, **options)
73
75
  # @param [String] locator Which field to fill in
74
76
  # @param [Hash] options
77
+ # @param with: [String] The value to fill in
75
78
  # @macro waiting_behavior
76
- # @option options [String] :with The value to fill in - required
77
- # @option options [Hash] :fill_options Driver specific options regarding how to fill fields
78
- # @option options [String] :currently_with The current value property of the field to fill in
79
- # @option options [Boolean] :multiple Match fields that can have multiple values?
80
- # @option options [String] :id Match fields that match the id attribute
81
- # @option options [String] :name Match fields that match the name attribute
82
- # @option options [String] :placeholder Match fields that match the placeholder attribute
83
- # @option options [String, Array<String>] :class Match links that match the class(es) provided
84
- #
85
- # @return [Capybara::Node::Element] The element filled_in
86
- def fill_in(locator, options={})
87
- locator, options = nil, locator if locator.is_a? Hash
88
- raise "Must pass a hash containing 'with'" if not options.is_a?(Hash) or not options.has_key?(:with)
89
- with = options.delete(:with)
90
- fill_options = options.delete(:fill_options)
91
- options[:with] = options.delete(:currently_with) if options.has_key?(:currently_with)
92
- find(:fillable_field, locator, options).set(with, fill_options)
79
+ # @option options [String] currently_with The current value property of the field to fill in
80
+ # @option options [Boolean] multiple Match fields that can have multiple values?
81
+ # @option options [String, Regexp] id Match fields that match the id attribute
82
+ # @option options [String] name Match fields that match the name attribute
83
+ # @option options [String] placeholder Match fields that match the placeholder attribute
84
+ # @option options [String, Array<String>, Regexp] class Match fields that match the class(es) provided
85
+ # @option options [Hash] fill_options Driver specific options regarding how to fill fields (Defaults come from {Capybara.configure default_set_options})
86
+ #
87
+ # @return [Capybara::Node::Element] The element filled in
88
+ def fill_in(locator = nil, with:, currently_with: nil, fill_options: {}, **find_options)
89
+ find_options[:with] = currently_with if currently_with
90
+ find_options[:allow_self] = true if locator.nil?
91
+ find(:fillable_field, locator, **find_options).set(with, **fill_options)
93
92
  end
94
93
 
95
94
  # @!macro label_click
96
- # @option options [Boolean] :allow_label_click (Capybara.automatic_label_click) Attempt to click the label to toggle state if element is non-visible.
95
+ # @option options [Boolean] allow_label_click
96
+ # Attempt to click the label to toggle state if element is non-visible. Defaults to {Capybara.configure automatic_label_click}.
97
97
 
98
98
  ##
99
99
  #
100
- # Find a radio button and mark it as checked. The radio button can be found
101
- # via name, id or label text.
100
+ # Find a descendant radio button and mark it as checked. The radio button can be found
101
+ # via name, id, {Capybara.configure test_id} attribute or label text. If no locator is
102
+ # provided this will match against self or a descendant.
102
103
  #
104
+ # # will choose a descendant radio button with a name, id, or label text matching 'Male'
103
105
  # page.choose('Male')
104
106
  #
105
- # @overload choose([locator], options)
107
+ # # will choose `el` if it's a radio button element
108
+ # el.choose()
109
+ #
110
+ # @overload choose([locator], **options)
106
111
  # @param [String] locator Which radio button to choose
107
112
  #
108
- # @option options [String] :option Value of the radio_button to choose
109
- # @option options [String] :id Match fields that match the id attribute
110
- # @option options [String] :name Match fields that match the name attribute
111
- # @option options [String, Array<String>] :class Match links that match the class(es) provided
113
+ # @option options [String] option Value of the radio_button to choose
114
+ # @option options [String, Regexp] id Match fields that match the id attribute
115
+ # @option options [String] name Match fields that match the name attribute
116
+ # @option options [String, Array<String>, Regexp] class Match fields that match the class(es) provided
112
117
  # @macro waiting_behavior
113
118
  # @macro label_click
114
119
  #
115
120
  # @return [Capybara::Node::Element] The element chosen or the label clicked
116
- def choose(locator, options={})
117
- _check_with_label(:radio_button, true, locator, options)
121
+ def choose(locator = nil, **options)
122
+ _check_with_label(:radio_button, true, locator, **options)
118
123
  end
119
124
 
120
125
  ##
121
126
  #
122
- # Find a check box and mark it as checked. The check box can be found
123
- # via name, id or label text.
127
+ # Find a descendant check box and mark it as checked. The check box can be found
128
+ # via name, id, {Capybara.configure test_id} attribute, or label text. If no locator
129
+ # is provided this will match against self or a descendant.
124
130
  #
131
+ # # will check a descendant checkbox with a name, id, or label text matching 'German'
125
132
  # page.check('German')
126
133
  #
134
+ # # will check `el` if it's a checkbox element
135
+ # el.check()
136
+ #
127
137
  #
128
- # @overload check([locator], options)
138
+ # @overload check([locator], **options)
129
139
  # @param [String] locator Which check box to check
130
140
  #
131
- # @option options [String] :option Value of the checkbox to select
132
- # @option options [String] id Match fields that match the id attribute
141
+ # @option options [String] option Value of the checkbox to select
142
+ # @option options [String, Regexp] id Match fields that match the id attribute
133
143
  # @option options [String] name Match fields that match the name attribute
134
- # @option options [String, Array<String>] :class Match links that match the class(es) provided
144
+ # @option options [String, Array<String>, Regexp] class Match fields that match the class(es) provided
135
145
  # @macro label_click
136
146
  # @macro waiting_behavior
137
147
  #
138
148
  # @return [Capybara::Node::Element] The element checked or the label clicked
139
- def check(locator, options={})
140
- _check_with_label(:checkbox, true, locator, options)
149
+ def check(locator = nil, **options)
150
+ _check_with_label(:checkbox, true, locator, **options)
141
151
  end
142
152
 
143
153
  ##
144
154
  #
145
- # Find a check box and mark uncheck it. The check box can be found
146
- # via name, id or label text.
155
+ # Find a descendant check box and uncheck it. The check box can be found
156
+ # via name, id, {Capybara.configure test_id} attribute, or label text. If
157
+ # no locator is provided this will match against self or a descendant.
147
158
  #
159
+ # # will uncheck a descendant checkbox with a name, id, or label text matching 'German'
148
160
  # page.uncheck('German')
149
161
  #
162
+ # # will uncheck `el` if it's a checkbox element
163
+ # el.uncheck()
150
164
  #
151
- # @overload uncheck([locator], options)
165
+ #
166
+ # @overload uncheck([locator], **options)
152
167
  # @param [String] locator Which check box to uncheck
153
168
  #
154
- # @option options [String] :option Value of the checkbox to deselect
155
- # @option options [String] id Match fields that match the id attribute
169
+ # @option options [String] option Value of the checkbox to deselect
170
+ # @option options [String, Regexp] id Match fields that match the id attribute
156
171
  # @option options [String] name Match fields that match the name attribute
157
- # @option options [String, Array<String>] :class Match links that match the class(es) provided
172
+ # @option options [String, Array<String>, Regexp] class Match fields that match the class(es) provided
158
173
  # @macro label_click
159
174
  # @macro waiting_behavior
160
175
  #
161
176
  # @return [Capybara::Node::Element] The element unchecked or the label clicked
162
- def uncheck(locator, options={})
163
- _check_with_label(:checkbox, false, locator, options)
177
+ def uncheck(locator = nil, **options)
178
+ _check_with_label(:checkbox, false, locator, **options)
164
179
  end
165
180
 
166
181
  ##
167
182
  #
168
- # If `:from` option is present, `select` finds a select box on the page
169
- # and selects a particular option from it.
183
+ # If `from` option is present, {#select} finds a select box, or text input with associated datalist,
184
+ # on the page and selects a particular option from it.
170
185
  # Otherwise it finds an option inside current scope and selects it.
171
- # If the select box is a multiple select, +select+ can be called multiple times to select more than
186
+ # If the select box is a multiple select, {#select} can be called multiple times to select more than
172
187
  # one option.
173
- # The select box can be found via its name, id or label text. The option can be found by its text.
188
+ # The select box can be found via its name, id, {Capybara.configure test_id} attribute, or label text.
189
+ # The option can be found by its text.
174
190
  #
175
191
  # page.select 'March', from: 'Month'
176
192
  #
177
- # @macro waiting_behavior
193
+ # @overload select(value = nil, from: nil, **options)
194
+ # @macro waiting_behavior
178
195
  #
179
- # @param [String] value Which option to select
180
- # @option options [String] :from The id, name or label of the select box
196
+ # @param value [String] Which option to select
197
+ # @param from [String] The id, {Capybara.configure test_id} attribute, name or label of the select box
181
198
  #
182
199
  # @return [Capybara::Node::Element] The option element selected
183
- def select(value, options={})
184
- if options.has_key?(:from)
185
- from = options.delete(:from)
186
- find(:select, from, options).find(:option, value, options).select_option
200
+ def select(value = nil, from: nil, **options)
201
+ raise ArgumentError, 'The :from option does not take an element' if from.is_a? Capybara::Node::Element
202
+
203
+ el = from ? find_select_or_datalist_input(from, options) : self
204
+
205
+ if el.respond_to?(:tag_name) && (el.tag_name == 'input')
206
+ select_datalist_option(el, value)
187
207
  else
188
- find(:option, value, options).select_option
208
+ el.find(:option, value, **options).select_option
189
209
  end
190
210
  end
191
211
 
192
212
  ##
193
213
  #
194
214
  # Find a select box on the page and unselect a particular option from it. If the select
195
- # box is a multiple select, +unselect+ can be called multiple times to unselect more than
196
- # one option. The select box can be found via its name, id or label text.
215
+ # box is a multiple select, {#unselect} can be called multiple times to unselect more than
216
+ # one option. The select box can be found via its name, id, {Capybara.configure test_id} attribute,
217
+ # or label text.
197
218
  #
198
219
  # page.unselect 'March', from: 'Month'
199
220
  #
200
- # @macro waiting_behavior
221
+ # @overload unselect(value = nil, from: nil, **options)
222
+ # @macro waiting_behavior
223
+ #
224
+ # @param value [String] Which option to unselect
225
+ # @param from [String] The id, {Capybara.configure test_id} attribute, name or label of the select box
201
226
  #
202
- # @param [String] value Which option to unselect
203
- # @param [Hash{:from => String}] options The id, name or label of the select box
204
227
  #
205
228
  # @return [Capybara::Node::Element] The option element unselected
206
- def unselect(value, options={})
207
- if options.has_key?(:from)
208
- from = options.delete(:from)
209
- find(:select, from, options).find(:option, value, options).unselect_option
210
- else
211
- find(:option, value, options).unselect_option
212
- end
229
+ def unselect(value = nil, from: nil, **options)
230
+ raise ArgumentError, 'The :from option does not take an element' if from.is_a? Capybara::Node::Element
231
+
232
+ scope = from ? find(:select, from, **options) : self
233
+ scope.find(:option, value, **options).unselect_option
213
234
  end
214
235
 
215
236
  ##
216
237
  #
217
- # Find a file field on the page and attach a file given its path. The file field can
218
- # be found via its name, id or label text.
238
+ # Find a descendant file field on the page and attach a file given its path. There are two ways to use
239
+ # {#attach_file}, in the first method the file field can be found via its name, id,
240
+ # {Capybara.configure test_id} attribute, or label text. In the case of the file field being hidden for
241
+ # styling reasons the `make_visible` option can be used to temporarily change the CSS of
242
+ # the file field, attach the file, and then revert the CSS back to original. If no locator is
243
+ # passed this will match self or a descendant.
244
+ # The second method, which is currently in beta and may be changed/removed, involves passing a block
245
+ # which performs whatever actions would trigger the file chooser to appear.
219
246
  #
220
- # page.attach_file(locator, '/path/to/file.png')
247
+ # # will attach file to a descendant file input element that has a name, id, or label_text matching 'My File'
248
+ # page.attach_file('My File', '/path/to/file.png')
221
249
  #
222
- # @macro waiting_behavior
250
+ # # will attach file to el if it's a file input element
251
+ # el.attach_file('/path/to/file.png')
223
252
  #
224
- # @param [String] locator Which field to attach the file to
225
- # @param [String] path The path of the file that will be attached, or an array of paths
253
+ # # will attach file to whatever file input is triggered by the block
254
+ # page.attach_file('/path/to/file.png') do
255
+ # page.find('#upload_button').click
256
+ # end
226
257
  #
227
- # @option options [Symbol] match (Capybara.match) The matching strategy to use (:one, :first, :prefer_exact, :smart).
228
- # @option options [Boolean] exact (Capybara.exact) Match the exact label name/contents or accept a partial match.
229
- # @option options [Boolean] multiple Match field which allows multiple file selection
230
- # @option options [String] id Match fields that match the id attribute
231
- # @option options [String] name Match fields that match the name attribute
232
- # @option options [String, Array<String>] :class Match links that match the class(es) provided
233
- # @option options [true, Hash] make_visible A Hash of CSS styles to change before attempting to attach the file, if `true` { opacity: 1, display: 'block', visibility: 'visible' } is used (may not be supported by all drivers)
258
+ # @overload attach_file([locator], paths, **options)
259
+ # @macro waiting_behavior
234
260
  #
261
+ # @param [String] locator Which field to attach the file to
262
+ # @param [String, Array<String>] paths The path(s) of the file(s) that will be attached
263
+ #
264
+ # @option options [Symbol] match
265
+ # The matching strategy to use (:one, :first, :prefer_exact, :smart). Defaults to {Capybara.configure match}.
266
+ # @option options [Boolean] exact
267
+ # Match the exact label name/contents or accept a partial match. Defaults to {Capybara.configure exact}.
268
+ # @option options [Boolean] multiple Match field which allows multiple file selection
269
+ # @option options [String, Regexp] id Match fields that match the id attribute
270
+ # @option options [String] name Match fields that match the name attribute
271
+ # @option options [String, Array<String>, Regexp] class Match fields that match the class(es) provided
272
+ # @option options [true, Hash] make_visible
273
+ # A Hash of CSS styles to change before attempting to attach the file, if `true`, `{ opacity: 1, display: 'block', visibility: 'visible' }` is used (may not be supported by all drivers).
274
+ # @overload attach_file(paths, &blk)
275
+ # @param [String, Array<String>] paths The path(s) of the file(s) that will be attached
276
+ # @yield Block whose actions will trigger the system file chooser to be shown
235
277
  # @return [Capybara::Node::Element] The file field element
236
- def attach_file(locator, path, options={})
237
- locator, path, options = nil, locator, path if path.is_a? Hash
238
- Array(path).each do |p|
239
- raise Capybara::FileNotFound, "cannot attach file, #{p} does not exist" unless File.exist?(p.to_s)
278
+ def attach_file(locator = nil, paths, make_visible: nil, **options) # rubocop:disable Style/OptionalArguments
279
+ if locator && block_given?
280
+ raise ArgumentError, '``#attach_file` does not support passing both a locator and a block'
240
281
  end
241
- # Allow user to update the CSS style of the file input since they are so often hidden on a page
242
- if style = options.delete(:make_visible)
243
- style = { opacity: 1, display: 'block', visibility: 'visible' } if style == true
244
- ff = find(:file_field, locator, options.merge({visible: :all}))
245
- _update_style(ff, style)
246
- if ff.visible?
247
- begin
248
- ff.set(path)
249
- ensure
250
- _reset_style(ff)
251
- end
252
- else
253
- raise ExpectationNotMet, "The style changes in :make_visible did not make the file input visible"
282
+
283
+ Array(paths).each do |path|
284
+ raise Capybara::FileNotFound, "cannot attach file, #{path} does not exist" unless File.exist?(path.to_s)
285
+ end
286
+ options[:allow_self] = true if locator.nil?
287
+
288
+ if block_given?
289
+ begin
290
+ execute_script CAPTURE_FILE_ELEMENT_SCRIPT
291
+ yield
292
+ file_field = evaluate_script 'window._capybara_clicked_file_input'
293
+ raise ArgumentError, "Capybara was unable to determine the file input you're attaching to" unless file_field
294
+ rescue ::Capybara::NotSupportedByDriverError
295
+ warn 'Block mode of `#attach_file` is not supported by the current driver - ignoring.'
254
296
  end
297
+ end
298
+ # Allow user to update the CSS style of the file input since they are so often hidden on a page
299
+ if make_visible
300
+ ff = file_field || find(:file_field, locator, **options.merge(visible: :all))
301
+ while_visible(ff, make_visible) { |el| el.set(paths) }
255
302
  else
256
- find(:file_field, locator, options).set(path)
303
+ (file_field || find(:file_field, locator, **options)).set(paths)
257
304
  end
258
305
  end
259
306
 
260
307
  private
261
- def _update_style(element, style)
262
- script = <<-JS
263
- var el = arguments[0];
264
- el.capybara_style_cache = el.style.cssText;
265
- var css = arguments[1];
266
- for (var prop in css){
267
- if (css.hasOwnProperty(prop)) {
268
- el.style[prop] = css[prop]
269
- }
270
- }
271
- JS
272
- begin
273
- session.execute_script(script, element, style)
274
- rescue Capybara::NotSupportedByDriverError
275
- warn "The :make_visible option is not supported by the current driver - ignoring"
308
+
309
+ def find_select_or_datalist_input(from, options)
310
+ synchronize(Capybara::Queries::BaseQuery.wait(options, session_options.default_max_wait_time)) do
311
+ find(:select, from, **options)
312
+ rescue Capybara::ElementNotFound => select_error # rubocop:disable Naming/RescuedExceptionsVariableName
313
+ raise if %i[selected with_selected multiple].any? { |option| options.key?(option) }
314
+
315
+ begin
316
+ find(:datalist_input, from, **options)
317
+ rescue Capybara::ElementNotFound => dlinput_error # rubocop:disable Naming/RescuedExceptionsVariableName
318
+ raise Capybara::ElementNotFound, "#{select_error.message} and #{dlinput_error.message}"
319
+ end
276
320
  end
277
321
  end
278
322
 
279
- def _reset_style(element)
280
- script = <<-JS
281
- var el = arguments[0];
282
- if (el.hasOwnProperty('capybara_style_cache')) {
283
- el.style.cssText = el.capybara_style_cache;
284
- delete el.capybara_style_cache;
285
- }
286
- JS
323
+ def select_datalist_option(input, value)
324
+ datalist_options = input.evaluate_script(DATALIST_OPTIONS_SCRIPT)
325
+ option = datalist_options.find { |opt| opt.values_at('value', 'label').include?(value) }
326
+ raise ::Capybara::ElementNotFound, %(Unable to find datalist option "#{value}") unless option
327
+
328
+ input.set(option['value'])
329
+ rescue ::Capybara::NotSupportedByDriverError
330
+ # Implement for drivers that don't support JS
331
+ datalist = find(:xpath, XPath.descendant(:datalist)[XPath.attr(:id) == input[:list]], visible: false)
332
+ option = datalist.find(:datalist_option, value, disabled: false)
333
+ input.set(option.value)
334
+ end
335
+
336
+ def while_visible(element, visible_css)
337
+ if visible_css == true
338
+ visible_css = { opacity: 1, display: 'block', visibility: 'visible', width: 'auto', height: 'auto' }
339
+ end
340
+ _update_style(element, visible_css)
341
+ unless element.visible?
342
+ raise ExpectationNotMet, 'The style changes in :make_visible did not make the file input visible'
343
+ end
344
+
287
345
  begin
288
- session.execute_script(script, element)
289
- rescue
346
+ yield element
347
+ ensure
348
+ _reset_style(element)
290
349
  end
291
350
  end
292
351
 
352
+ def _update_style(element, style)
353
+ element.execute_script(UPDATE_STYLE_SCRIPT, style)
354
+ rescue Capybara::NotSupportedByDriverError
355
+ warn 'The :make_visible option is not supported by the current driver - ignoring'
356
+ end
293
357
 
294
- def _check_with_label(selector, checked, locator, options)
295
- locator, options = nil, locator if locator.is_a? Hash
296
- allow_label_click = options.delete(:allow_label_click) { session_options.automatic_label_click }
358
+ def _reset_style(element)
359
+ element.execute_script(RESET_STYLE_SCRIPT)
360
+ rescue StandardError # rubocop:disable Lint/SuppressedException swallow extra errors
361
+ end
297
362
 
363
+ def _check_with_label(selector, checked, locator,
364
+ allow_label_click: session_options.automatic_label_click, **options)
365
+ options[:allow_self] = true if locator.nil?
298
366
  synchronize(Capybara::Queries::BaseQuery.wait(options, session_options.default_max_wait_time)) do
367
+ el = find(selector, locator, **options)
368
+ el.set(checked)
369
+ rescue StandardError => e
370
+ raise unless allow_label_click && catch_error?(e)
371
+
299
372
  begin
300
- el = find(selector, locator, options)
301
- el.set(checked)
302
- rescue => e
303
- raise unless allow_label_click && catch_error?(e)
304
- begin
305
- el ||= find(selector, locator, options.merge(visible: :all))
306
- label = find(:label, for: el, visible: true)
307
- label.click unless (el.checked? == checked)
308
- rescue
309
- raise e
310
- end
373
+ el ||= find(selector, locator, **options.merge(visible: :all))
374
+ el.session.find(:label, for: el, visible: true, match: :first).click unless el.checked? == checked
375
+ rescue StandardError # swallow extra errors - raise original
376
+ raise e
311
377
  end
312
378
  end
313
379
  end
314
380
 
381
+ UPDATE_STYLE_SCRIPT = <<~'JS'
382
+ this.capybara_style_cache = this.style.cssText;
383
+ var css = arguments[0];
384
+ for (var prop in css){
385
+ if (css.hasOwnProperty(prop)) {
386
+ this.style.setProperty(prop, css[prop], "important");
387
+ }
388
+ }
389
+ JS
390
+
391
+ RESET_STYLE_SCRIPT = <<~'JS'
392
+ if (this.hasOwnProperty('capybara_style_cache')) {
393
+ this.style.cssText = this.capybara_style_cache;
394
+ delete this.capybara_style_cache;
395
+ }
396
+ JS
397
+
398
+ DATALIST_OPTIONS_SCRIPT = <<~'JS'
399
+ Array.prototype.slice.call((this.list||{}).options || []).
400
+ filter(function(el){ return !el.disabled }).
401
+ map(function(el){ return { "value": el.value, "label": el.label} })
402
+ JS
403
+
404
+ CAPTURE_FILE_ELEMENT_SCRIPT = <<~'JS'
405
+ document.addEventListener('click', function file_catcher(e){
406
+ if (e.target.matches("input[type='file']")) {
407
+ window._capybara_clicked_file_input = e.target;
408
+ this.removeEventListener('click', file_catcher);
409
+ e.preventDefault();
410
+ }
411
+ })
412
+ JS
315
413
  end
316
414
  end
317
415
  end