capybara 3.32.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.yardopts +1 -0
- data/History.md +1813 -0
- data/License.txt +22 -0
- data/README.md +1099 -0
- data/lib/capybara.rb +511 -0
- data/lib/capybara/config.rb +94 -0
- data/lib/capybara/cucumber.rb +27 -0
- data/lib/capybara/driver/base.rb +170 -0
- data/lib/capybara/driver/node.rb +139 -0
- data/lib/capybara/dsl.rb +65 -0
- data/lib/capybara/helpers.rb +108 -0
- data/lib/capybara/minitest.rb +386 -0
- data/lib/capybara/minitest/spec.rb +264 -0
- data/lib/capybara/node/actions.rb +420 -0
- data/lib/capybara/node/base.rb +143 -0
- data/lib/capybara/node/document.rb +48 -0
- data/lib/capybara/node/document_matchers.rb +67 -0
- data/lib/capybara/node/element.rb +606 -0
- data/lib/capybara/node/finders.rb +325 -0
- data/lib/capybara/node/matchers.rb +883 -0
- data/lib/capybara/node/simple.rb +208 -0
- data/lib/capybara/queries/ancestor_query.rb +27 -0
- data/lib/capybara/queries/base_query.rb +106 -0
- data/lib/capybara/queries/current_path_query.rb +51 -0
- data/lib/capybara/queries/match_query.rb +26 -0
- data/lib/capybara/queries/selector_query.rb +710 -0
- data/lib/capybara/queries/sibling_query.rb +26 -0
- data/lib/capybara/queries/style_query.rb +45 -0
- data/lib/capybara/queries/text_query.rb +110 -0
- data/lib/capybara/queries/title_query.rb +39 -0
- data/lib/capybara/rack_test/browser.rb +140 -0
- data/lib/capybara/rack_test/css_handlers.rb +13 -0
- data/lib/capybara/rack_test/driver.rb +109 -0
- data/lib/capybara/rack_test/errors.rb +6 -0
- data/lib/capybara/rack_test/form.rb +127 -0
- data/lib/capybara/rack_test/node.rb +325 -0
- data/lib/capybara/rails.rb +16 -0
- data/lib/capybara/registrations/drivers.rb +36 -0
- data/lib/capybara/registrations/patches/puma_ssl.rb +27 -0
- data/lib/capybara/registrations/servers.rb +44 -0
- data/lib/capybara/result.rb +190 -0
- data/lib/capybara/rspec.rb +29 -0
- data/lib/capybara/rspec/features.rb +23 -0
- data/lib/capybara/rspec/matcher_proxies.rb +82 -0
- data/lib/capybara/rspec/matchers.rb +201 -0
- data/lib/capybara/rspec/matchers/base.rb +111 -0
- data/lib/capybara/rspec/matchers/become_closed.rb +33 -0
- data/lib/capybara/rspec/matchers/compound.rb +88 -0
- data/lib/capybara/rspec/matchers/count_sugar.rb +37 -0
- data/lib/capybara/rspec/matchers/have_ancestor.rb +28 -0
- data/lib/capybara/rspec/matchers/have_current_path.rb +29 -0
- data/lib/capybara/rspec/matchers/have_selector.rb +77 -0
- data/lib/capybara/rspec/matchers/have_sibling.rb +27 -0
- data/lib/capybara/rspec/matchers/have_text.rb +33 -0
- data/lib/capybara/rspec/matchers/have_title.rb +29 -0
- data/lib/capybara/rspec/matchers/match_selector.rb +27 -0
- data/lib/capybara/rspec/matchers/match_style.rb +38 -0
- data/lib/capybara/rspec/matchers/spatial_sugar.rb +39 -0
- data/lib/capybara/selector.rb +233 -0
- data/lib/capybara/selector/builders/css_builder.rb +84 -0
- data/lib/capybara/selector/builders/xpath_builder.rb +69 -0
- data/lib/capybara/selector/css.rb +102 -0
- data/lib/capybara/selector/definition.rb +276 -0
- data/lib/capybara/selector/definition/button.rb +51 -0
- data/lib/capybara/selector/definition/checkbox.rb +26 -0
- data/lib/capybara/selector/definition/css.rb +10 -0
- data/lib/capybara/selector/definition/datalist_input.rb +35 -0
- data/lib/capybara/selector/definition/datalist_option.rb +25 -0
- data/lib/capybara/selector/definition/element.rb +27 -0
- data/lib/capybara/selector/definition/field.rb +40 -0
- data/lib/capybara/selector/definition/fieldset.rb +14 -0
- data/lib/capybara/selector/definition/file_field.rb +13 -0
- data/lib/capybara/selector/definition/fillable_field.rb +33 -0
- data/lib/capybara/selector/definition/frame.rb +17 -0
- data/lib/capybara/selector/definition/id.rb +6 -0
- data/lib/capybara/selector/definition/label.rb +62 -0
- data/lib/capybara/selector/definition/link.rb +46 -0
- data/lib/capybara/selector/definition/link_or_button.rb +16 -0
- data/lib/capybara/selector/definition/option.rb +27 -0
- data/lib/capybara/selector/definition/radio_button.rb +27 -0
- data/lib/capybara/selector/definition/select.rb +81 -0
- data/lib/capybara/selector/definition/table.rb +109 -0
- data/lib/capybara/selector/definition/table_row.rb +21 -0
- data/lib/capybara/selector/definition/xpath.rb +5 -0
- data/lib/capybara/selector/filter.rb +5 -0
- data/lib/capybara/selector/filter_set.rb +124 -0
- data/lib/capybara/selector/filters/base.rb +77 -0
- data/lib/capybara/selector/filters/expression_filter.rb +22 -0
- data/lib/capybara/selector/filters/locator_filter.rb +29 -0
- data/lib/capybara/selector/filters/node_filter.rb +31 -0
- data/lib/capybara/selector/regexp_disassembler.rb +214 -0
- data/lib/capybara/selector/selector.rb +147 -0
- data/lib/capybara/selector/xpath_extensions.rb +17 -0
- data/lib/capybara/selenium/atoms/getAttribute.min.js +1 -0
- data/lib/capybara/selenium/atoms/isDisplayed.min.js +1 -0
- data/lib/capybara/selenium/atoms/src/getAttribute.js +161 -0
- data/lib/capybara/selenium/atoms/src/isDisplayed.js +454 -0
- data/lib/capybara/selenium/driver.rb +496 -0
- data/lib/capybara/selenium/driver_specializations/chrome_driver.rb +119 -0
- data/lib/capybara/selenium/driver_specializations/edge_driver.rb +126 -0
- data/lib/capybara/selenium/driver_specializations/firefox_driver.rb +89 -0
- data/lib/capybara/selenium/driver_specializations/internet_explorer_driver.rb +26 -0
- data/lib/capybara/selenium/driver_specializations/safari_driver.rb +24 -0
- data/lib/capybara/selenium/extensions/file_input_click_emulation.rb +34 -0
- data/lib/capybara/selenium/extensions/find.rb +110 -0
- data/lib/capybara/selenium/extensions/html5_drag.rb +228 -0
- data/lib/capybara/selenium/extensions/modifier_keys_stack.rb +28 -0
- data/lib/capybara/selenium/extensions/scroll.rb +78 -0
- data/lib/capybara/selenium/logger_suppressor.rb +34 -0
- data/lib/capybara/selenium/node.rb +610 -0
- data/lib/capybara/selenium/nodes/chrome_node.rb +119 -0
- data/lib/capybara/selenium/nodes/edge_node.rb +104 -0
- data/lib/capybara/selenium/nodes/firefox_node.rb +131 -0
- data/lib/capybara/selenium/nodes/ie_node.rb +22 -0
- data/lib/capybara/selenium/nodes/safari_node.rb +118 -0
- data/lib/capybara/selenium/patches/action_pauser.rb +26 -0
- data/lib/capybara/selenium/patches/atoms.rb +18 -0
- data/lib/capybara/selenium/patches/is_displayed.rb +16 -0
- data/lib/capybara/selenium/patches/logs.rb +47 -0
- data/lib/capybara/selenium/patches/pause_duration_fix.rb +9 -0
- data/lib/capybara/selenium/patches/persistent_client.rb +20 -0
- data/lib/capybara/server.rb +126 -0
- data/lib/capybara/server/animation_disabler.rb +58 -0
- data/lib/capybara/server/checker.rb +44 -0
- data/lib/capybara/server/middleware.rb +69 -0
- data/lib/capybara/session.rb +942 -0
- data/lib/capybara/session/config.rb +124 -0
- data/lib/capybara/session/matchers.rb +87 -0
- data/lib/capybara/spec/fixtures/another_test_file.txt +1 -0
- data/lib/capybara/spec/fixtures/capybara.jpg +3 -0
- data/lib/capybara/spec/fixtures/no_extension +1 -0
- data/lib/capybara/spec/fixtures/test_file.txt +1 -0
- data/lib/capybara/spec/public/jquery-ui.js +13 -0
- data/lib/capybara/spec/public/jquery.js +5 -0
- data/lib/capybara/spec/public/offset.js +6 -0
- data/lib/capybara/spec/public/test.js +268 -0
- data/lib/capybara/spec/session/accept_alert_spec.rb +81 -0
- data/lib/capybara/spec/session/accept_confirm_spec.rb +32 -0
- data/lib/capybara/spec/session/accept_prompt_spec.rb +78 -0
- data/lib/capybara/spec/session/all_spec.rb +278 -0
- data/lib/capybara/spec/session/ancestor_spec.rb +88 -0
- data/lib/capybara/spec/session/assert_all_of_selectors_spec.rb +140 -0
- data/lib/capybara/spec/session/assert_current_path_spec.rb +75 -0
- data/lib/capybara/spec/session/assert_selector_spec.rb +143 -0
- data/lib/capybara/spec/session/assert_style_spec.rb +26 -0
- data/lib/capybara/spec/session/assert_text_spec.rb +258 -0
- data/lib/capybara/spec/session/assert_title_spec.rb +93 -0
- data/lib/capybara/spec/session/attach_file_spec.rb +216 -0
- data/lib/capybara/spec/session/body_spec.rb +23 -0
- data/lib/capybara/spec/session/check_spec.rb +235 -0
- data/lib/capybara/spec/session/choose_spec.rb +121 -0
- data/lib/capybara/spec/session/click_button_spec.rb +506 -0
- data/lib/capybara/spec/session/click_link_or_button_spec.rb +129 -0
- data/lib/capybara/spec/session/click_link_spec.rb +229 -0
- data/lib/capybara/spec/session/current_scope_spec.rb +31 -0
- data/lib/capybara/spec/session/current_url_spec.rb +115 -0
- data/lib/capybara/spec/session/dismiss_confirm_spec.rb +36 -0
- data/lib/capybara/spec/session/dismiss_prompt_spec.rb +21 -0
- data/lib/capybara/spec/session/element/assert_match_selector_spec.rb +38 -0
- data/lib/capybara/spec/session/element/match_css_spec.rb +31 -0
- data/lib/capybara/spec/session/element/match_xpath_spec.rb +25 -0
- data/lib/capybara/spec/session/element/matches_selector_spec.rb +120 -0
- data/lib/capybara/spec/session/evaluate_async_script_spec.rb +23 -0
- data/lib/capybara/spec/session/evaluate_script_spec.rb +49 -0
- data/lib/capybara/spec/session/execute_script_spec.rb +28 -0
- data/lib/capybara/spec/session/fill_in_spec.rb +286 -0
- data/lib/capybara/spec/session/find_button_spec.rb +74 -0
- data/lib/capybara/spec/session/find_by_id_spec.rb +33 -0
- data/lib/capybara/spec/session/find_field_spec.rb +113 -0
- data/lib/capybara/spec/session/find_link_spec.rb +70 -0
- data/lib/capybara/spec/session/find_spec.rb +531 -0
- data/lib/capybara/spec/session/first_spec.rb +156 -0
- data/lib/capybara/spec/session/frame/frame_title_spec.rb +23 -0
- data/lib/capybara/spec/session/frame/frame_url_spec.rb +23 -0
- data/lib/capybara/spec/session/frame/switch_to_frame_spec.rb +116 -0
- data/lib/capybara/spec/session/frame/within_frame_spec.rb +112 -0
- data/lib/capybara/spec/session/go_back_spec.rb +12 -0
- data/lib/capybara/spec/session/go_forward_spec.rb +14 -0
- data/lib/capybara/spec/session/has_all_selectors_spec.rb +69 -0
- data/lib/capybara/spec/session/has_ancestor_spec.rb +46 -0
- data/lib/capybara/spec/session/has_any_selectors_spec.rb +25 -0
- data/lib/capybara/spec/session/has_button_spec.rb +69 -0
- data/lib/capybara/spec/session/has_css_spec.rb +374 -0
- data/lib/capybara/spec/session/has_current_path_spec.rb +138 -0
- data/lib/capybara/spec/session/has_field_spec.rb +349 -0
- data/lib/capybara/spec/session/has_link_spec.rb +39 -0
- data/lib/capybara/spec/session/has_none_selectors_spec.rb +78 -0
- data/lib/capybara/spec/session/has_select_spec.rb +310 -0
- data/lib/capybara/spec/session/has_selector_spec.rb +202 -0
- data/lib/capybara/spec/session/has_sibling_spec.rb +50 -0
- data/lib/capybara/spec/session/has_table_spec.rb +198 -0
- data/lib/capybara/spec/session/has_text_spec.rb +394 -0
- data/lib/capybara/spec/session/has_title_spec.rb +71 -0
- data/lib/capybara/spec/session/has_xpath_spec.rb +149 -0
- data/lib/capybara/spec/session/headers_spec.rb +8 -0
- data/lib/capybara/spec/session/html_spec.rb +47 -0
- data/lib/capybara/spec/session/matches_style_spec.rb +35 -0
- data/lib/capybara/spec/session/node_spec.rb +1292 -0
- data/lib/capybara/spec/session/node_wrapper_spec.rb +39 -0
- data/lib/capybara/spec/session/refresh_spec.rb +33 -0
- data/lib/capybara/spec/session/reset_session_spec.rb +148 -0
- data/lib/capybara/spec/session/response_code_spec.rb +8 -0
- data/lib/capybara/spec/session/save_and_open_page_spec.rb +21 -0
- data/lib/capybara/spec/session/save_and_open_screenshot_spec.rb +43 -0
- data/lib/capybara/spec/session/save_page_spec.rb +110 -0
- data/lib/capybara/spec/session/save_screenshot_spec.rb +55 -0
- data/lib/capybara/spec/session/screenshot_spec.rb +18 -0
- data/lib/capybara/spec/session/scroll_spec.rb +117 -0
- data/lib/capybara/spec/session/select_spec.rb +229 -0
- data/lib/capybara/spec/session/selectors_spec.rb +98 -0
- data/lib/capybara/spec/session/sibling_spec.rb +52 -0
- data/lib/capybara/spec/session/source_spec.rb +0 -0
- data/lib/capybara/spec/session/text_spec.rb +74 -0
- data/lib/capybara/spec/session/title_spec.rb +29 -0
- data/lib/capybara/spec/session/uncheck_spec.rb +100 -0
- data/lib/capybara/spec/session/unselect_spec.rb +116 -0
- data/lib/capybara/spec/session/visit_spec.rb +204 -0
- data/lib/capybara/spec/session/window/become_closed_spec.rb +89 -0
- data/lib/capybara/spec/session/window/current_window_spec.rb +28 -0
- data/lib/capybara/spec/session/window/open_new_window_spec.rb +31 -0
- data/lib/capybara/spec/session/window/switch_to_window_spec.rb +132 -0
- data/lib/capybara/spec/session/window/window_opened_by_spec.rb +99 -0
- data/lib/capybara/spec/session/window/window_spec.rb +203 -0
- data/lib/capybara/spec/session/window/windows_spec.rb +34 -0
- data/lib/capybara/spec/session/window/within_window_spec.rb +157 -0
- data/lib/capybara/spec/session/within_spec.rb +199 -0
- data/lib/capybara/spec/spec_helper.rb +134 -0
- data/lib/capybara/spec/test_app.rb +226 -0
- data/lib/capybara/spec/views/animated.erb +49 -0
- data/lib/capybara/spec/views/buttons.erb +5 -0
- data/lib/capybara/spec/views/fieldsets.erb +30 -0
- data/lib/capybara/spec/views/form.erb +685 -0
- data/lib/capybara/spec/views/frame_child.erb +18 -0
- data/lib/capybara/spec/views/frame_one.erb +10 -0
- data/lib/capybara/spec/views/frame_parent.erb +9 -0
- data/lib/capybara/spec/views/frame_two.erb +9 -0
- data/lib/capybara/spec/views/header_links.erb +8 -0
- data/lib/capybara/spec/views/host_links.erb +13 -0
- data/lib/capybara/spec/views/initial_alert.erb +10 -0
- data/lib/capybara/spec/views/obscured.erb +47 -0
- data/lib/capybara/spec/views/offset.erb +32 -0
- data/lib/capybara/spec/views/path.erb +13 -0
- data/lib/capybara/spec/views/popup_one.erb +9 -0
- data/lib/capybara/spec/views/popup_two.erb +9 -0
- data/lib/capybara/spec/views/postback.erb +14 -0
- data/lib/capybara/spec/views/react.erb +45 -0
- data/lib/capybara/spec/views/scroll.erb +20 -0
- data/lib/capybara/spec/views/spatial.erb +31 -0
- data/lib/capybara/spec/views/tables.erb +130 -0
- data/lib/capybara/spec/views/with_animation.erb +74 -0
- data/lib/capybara/spec/views/with_base_tag.erb +11 -0
- data/lib/capybara/spec/views/with_count.erb +8 -0
- data/lib/capybara/spec/views/with_dragula.erb +22 -0
- data/lib/capybara/spec/views/with_fixed_header_footer.erb +17 -0
- data/lib/capybara/spec/views/with_hover.erb +24 -0
- data/lib/capybara/spec/views/with_hover1.erb +10 -0
- data/lib/capybara/spec/views/with_html.erb +208 -0
- data/lib/capybara/spec/views/with_html5_svg.erb +20 -0
- data/lib/capybara/spec/views/with_html_entities.erb +2 -0
- data/lib/capybara/spec/views/with_js.erb +160 -0
- data/lib/capybara/spec/views/with_jstree.erb +26 -0
- data/lib/capybara/spec/views/with_namespace.erb +20 -0
- data/lib/capybara/spec/views/with_scope.erb +42 -0
- data/lib/capybara/spec/views/with_scope_other.erb +6 -0
- data/lib/capybara/spec/views/with_simple_html.erb +2 -0
- data/lib/capybara/spec/views/with_slow_unload.erb +17 -0
- data/lib/capybara/spec/views/with_sortable_js.erb +21 -0
- data/lib/capybara/spec/views/with_title.erb +5 -0
- data/lib/capybara/spec/views/with_unload_alert.erb +14 -0
- data/lib/capybara/spec/views/with_windows.erb +54 -0
- data/lib/capybara/spec/views/within_frames.erb +15 -0
- data/lib/capybara/version.rb +5 -0
- data/lib/capybara/window.rb +146 -0
- data/spec/basic_node_spec.rb +154 -0
- data/spec/capybara_spec.rb +112 -0
- data/spec/css_builder_spec.rb +101 -0
- data/spec/css_splitter_spec.rb +38 -0
- data/spec/dsl_spec.rb +276 -0
- data/spec/filter_set_spec.rb +46 -0
- data/spec/fixtures/capybara.csv +1 -0
- data/spec/fixtures/certificate.pem +25 -0
- data/spec/fixtures/key.pem +27 -0
- data/spec/fixtures/selenium_driver_rspec_failure.rb +13 -0
- data/spec/fixtures/selenium_driver_rspec_success.rb +13 -0
- data/spec/minitest_spec.rb +163 -0
- data/spec/minitest_spec_spec.rb +162 -0
- data/spec/per_session_config_spec.rb +68 -0
- data/spec/rack_test_spec.rb +268 -0
- data/spec/regexp_dissassembler_spec.rb +250 -0
- data/spec/result_spec.rb +196 -0
- data/spec/rspec/features_spec.rb +99 -0
- data/spec/rspec/scenarios_spec.rb +19 -0
- data/spec/rspec/shared_spec_matchers.rb +947 -0
- data/spec/rspec/views_spec.rb +14 -0
- data/spec/rspec_matchers_spec.rb +62 -0
- data/spec/rspec_spec.rb +145 -0
- data/spec/sauce_spec_chrome.rb +43 -0
- data/spec/selector_spec.rb +513 -0
- data/spec/selenium_spec_chrome.rb +188 -0
- data/spec/selenium_spec_chrome_remote.rb +96 -0
- data/spec/selenium_spec_edge.rb +47 -0
- data/spec/selenium_spec_firefox.rb +208 -0
- data/spec/selenium_spec_firefox_remote.rb +80 -0
- data/spec/selenium_spec_ie.rb +150 -0
- data/spec/selenium_spec_safari.rb +148 -0
- data/spec/server_spec.rb +292 -0
- data/spec/session_spec.rb +91 -0
- data/spec/shared_selenium_node.rb +83 -0
- data/spec/shared_selenium_session.rb +476 -0
- data/spec/spec_helper.rb +100 -0
- data/spec/xpath_builder_spec.rb +93 -0
- metadata +753 -0
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'minitest/spec'
|
|
4
|
+
|
|
5
|
+
module Capybara
|
|
6
|
+
module Minitest
|
|
7
|
+
module Expectations
|
|
8
|
+
##
|
|
9
|
+
# Expectation that there is an ancestor
|
|
10
|
+
#
|
|
11
|
+
# @!method must_have_ancestor
|
|
12
|
+
# See {Capybara::Node::Matchers#has_ancestor?}
|
|
13
|
+
|
|
14
|
+
##
|
|
15
|
+
# Expectation that there is button
|
|
16
|
+
#
|
|
17
|
+
# @!method must_have_button
|
|
18
|
+
# See {Capybara::Node::Matchers#has_button?}
|
|
19
|
+
|
|
20
|
+
##
|
|
21
|
+
# Expectation that there is no button
|
|
22
|
+
#
|
|
23
|
+
# @!method wont_have_button
|
|
24
|
+
# See {Capybara::Node::Matchers#has_no_button?}
|
|
25
|
+
|
|
26
|
+
##
|
|
27
|
+
# Expectation that there is checked_field
|
|
28
|
+
#
|
|
29
|
+
# @!method must_have_checked_field
|
|
30
|
+
# See {Capybara::Node::Matchers#has_checked_field?}
|
|
31
|
+
|
|
32
|
+
##
|
|
33
|
+
# Expectation that there is no checked_field
|
|
34
|
+
#
|
|
35
|
+
# @!method wont_have_checked_field
|
|
36
|
+
# See {Capybara::Node::Matchers#has_no_checked_field?}
|
|
37
|
+
|
|
38
|
+
##
|
|
39
|
+
# Expectation that there is unchecked_field
|
|
40
|
+
#
|
|
41
|
+
# @!method must_have_unchecked_field
|
|
42
|
+
# See {Capybara::Node::Matchers#has_unchecked_field?}
|
|
43
|
+
|
|
44
|
+
##
|
|
45
|
+
# Expectation that there is no unchecked_field
|
|
46
|
+
#
|
|
47
|
+
# @!method wont_have_unchecked_field
|
|
48
|
+
# See {Capybara::Node::Matchers#has_no_unchecked_field?}
|
|
49
|
+
|
|
50
|
+
##
|
|
51
|
+
# Expectation that page content does match
|
|
52
|
+
#
|
|
53
|
+
# @!method must_have_content
|
|
54
|
+
# See {Capybara::Node::Matchers#has_content?}
|
|
55
|
+
|
|
56
|
+
##
|
|
57
|
+
# Expectation that page content does not match
|
|
58
|
+
#
|
|
59
|
+
# @!method wont_have_content
|
|
60
|
+
# See {Capybara::Node::Matchers#has_no_content?}
|
|
61
|
+
|
|
62
|
+
##
|
|
63
|
+
# Expectation that there is css
|
|
64
|
+
#
|
|
65
|
+
# @!method must_have_css
|
|
66
|
+
# See {Capybara::Node::Matchers#has_css?}
|
|
67
|
+
|
|
68
|
+
##
|
|
69
|
+
# Expectation that there is no css
|
|
70
|
+
#
|
|
71
|
+
# @!method wont_have_css
|
|
72
|
+
# See {Capybara::Node::Matchers#has_no_css?}
|
|
73
|
+
|
|
74
|
+
##
|
|
75
|
+
# Expectation that current path matches
|
|
76
|
+
#
|
|
77
|
+
# @!method must_have_current_path
|
|
78
|
+
# See {Capybara::SessionMatchers#has_current_path?}
|
|
79
|
+
|
|
80
|
+
##
|
|
81
|
+
# Expectation that current page does not match
|
|
82
|
+
#
|
|
83
|
+
# @!method wont_have_current_path
|
|
84
|
+
# See {Capybara::SessionMatchers#has_no_current_path?}
|
|
85
|
+
|
|
86
|
+
##
|
|
87
|
+
# Expectation that there is field
|
|
88
|
+
#
|
|
89
|
+
# @!method must_have_field
|
|
90
|
+
# See {Capybara::Node::Matchers#has_field?}
|
|
91
|
+
|
|
92
|
+
##
|
|
93
|
+
# Expectation that there is no field
|
|
94
|
+
#
|
|
95
|
+
# @!method wont_have_field
|
|
96
|
+
# See {Capybara::Node::Matchers#has_no_field?}
|
|
97
|
+
|
|
98
|
+
##
|
|
99
|
+
# Expectation that there is link
|
|
100
|
+
#
|
|
101
|
+
# @!method must_have_link
|
|
102
|
+
# See {Capybara::Node::Matchers#has_link?}
|
|
103
|
+
|
|
104
|
+
##
|
|
105
|
+
# Expectation that there is no link
|
|
106
|
+
#
|
|
107
|
+
# @!method wont_have_link
|
|
108
|
+
# See {Capybara::Node::Matchers#has_no_link?}
|
|
109
|
+
|
|
110
|
+
##
|
|
111
|
+
# Expectation that page text does match
|
|
112
|
+
#
|
|
113
|
+
# @!method must_have_text
|
|
114
|
+
# See {Capybara::Node::Matchers#has_text?}
|
|
115
|
+
|
|
116
|
+
##
|
|
117
|
+
# Expectation that page text does not match
|
|
118
|
+
#
|
|
119
|
+
# @!method wont_have_text
|
|
120
|
+
# See {Capybara::Node::Matchers#has_no_text?}
|
|
121
|
+
|
|
122
|
+
##
|
|
123
|
+
# Expectation that page title does match
|
|
124
|
+
#
|
|
125
|
+
# @!method must_have_title
|
|
126
|
+
# See {Capybara::Node::DocumentMatchers#has_title?}
|
|
127
|
+
|
|
128
|
+
##
|
|
129
|
+
# Expectation that page title does not match
|
|
130
|
+
#
|
|
131
|
+
# @!method wont_have_title
|
|
132
|
+
# See {Capybara::Node::DocumentMatchers#has_no_title?}
|
|
133
|
+
|
|
134
|
+
##
|
|
135
|
+
# Expectation that there is select
|
|
136
|
+
#
|
|
137
|
+
# @!method must_have_select
|
|
138
|
+
# See {Capybara::Node::Matchers#has_select?}
|
|
139
|
+
|
|
140
|
+
##
|
|
141
|
+
# Expectation that there is no select
|
|
142
|
+
#
|
|
143
|
+
# @!method wont_have_select
|
|
144
|
+
# See {Capybara::Node::Matchers#has_no_select?}
|
|
145
|
+
|
|
146
|
+
##
|
|
147
|
+
# Expectation that there is a selector
|
|
148
|
+
#
|
|
149
|
+
# @!method must_have_selector
|
|
150
|
+
# See {Capybara::Node::Matchers#has_selector?}
|
|
151
|
+
|
|
152
|
+
##
|
|
153
|
+
# Expectation that there is no selector
|
|
154
|
+
#
|
|
155
|
+
# @!method wont_have_selector
|
|
156
|
+
# See {Capybara::Node::Matchers#has_no_selector?}
|
|
157
|
+
|
|
158
|
+
##
|
|
159
|
+
# Expectation that all of the provided selectors are present
|
|
160
|
+
#
|
|
161
|
+
# @!method must_have_all_of_selectors
|
|
162
|
+
# See {Capybara::Node::Matchers#assert_all_of_selectors}
|
|
163
|
+
|
|
164
|
+
##
|
|
165
|
+
# Expectation that none of the provided selectors are present
|
|
166
|
+
#
|
|
167
|
+
# @!method must_have_none_of_selectors
|
|
168
|
+
# See {Capybara::Node::Matchers#assert_none_of_selectors}
|
|
169
|
+
|
|
170
|
+
##
|
|
171
|
+
# Expectation that any of the provided selectors are present
|
|
172
|
+
#
|
|
173
|
+
# @!method must_have_any_of_selectors
|
|
174
|
+
# See {Capybara::Node::Matchers#assert_any_of_selectors}
|
|
175
|
+
|
|
176
|
+
##
|
|
177
|
+
# Expectation that there is a sibling
|
|
178
|
+
#
|
|
179
|
+
# @!method must_have_sibling
|
|
180
|
+
# See {Capybara::Node::Matchers#has_sibling?}
|
|
181
|
+
|
|
182
|
+
##
|
|
183
|
+
# Expectation that element has style
|
|
184
|
+
#
|
|
185
|
+
# @!method must_match_style
|
|
186
|
+
# See {Capybara::Node::Matchers#matches_style?}
|
|
187
|
+
|
|
188
|
+
##
|
|
189
|
+
# Expectation that there is table
|
|
190
|
+
#
|
|
191
|
+
# @!method must_have_table
|
|
192
|
+
# See {Capybara::Node::Matchers#has_table?}
|
|
193
|
+
|
|
194
|
+
##
|
|
195
|
+
# Expectation that there is no table
|
|
196
|
+
#
|
|
197
|
+
# @!method wont_have_table
|
|
198
|
+
# See {Capybara::Node::Matchers#has_no_table?}
|
|
199
|
+
|
|
200
|
+
##
|
|
201
|
+
# Expectation that there is xpath
|
|
202
|
+
#
|
|
203
|
+
# @!method must_have_xpath
|
|
204
|
+
# See {Capybara::Node::Matchers#has_xpath?}
|
|
205
|
+
|
|
206
|
+
##
|
|
207
|
+
# Expectation that there is no xpath
|
|
208
|
+
#
|
|
209
|
+
# @!method wont_have_xpath
|
|
210
|
+
# See {Capybara::Node::Matchers#has_no_xpath?}
|
|
211
|
+
|
|
212
|
+
%w[text content title current_path].each do |assertion|
|
|
213
|
+
infect_an_assertion "assert_#{assertion}", "must_have_#{assertion}", :reverse
|
|
214
|
+
infect_an_assertion "refute_#{assertion}", "wont_have_#{assertion}", :reverse
|
|
215
|
+
end
|
|
216
|
+
|
|
217
|
+
# rubocop:disable Style/MultilineBlockChain
|
|
218
|
+
(%w[selector xpath css link button field select table checked_field unchecked_field
|
|
219
|
+
ancestor sibling].flat_map do |assertion|
|
|
220
|
+
[%W[assert_#{assertion} must_have_#{assertion}],
|
|
221
|
+
%W[refute_#{assertion} wont_have_#{assertion}]]
|
|
222
|
+
end + [%w[assert_all_of_selectors must_have_all_of_selectors],
|
|
223
|
+
%w[assert_none_of_selectors must_have_none_of_selectors],
|
|
224
|
+
%w[assert_any_of_selectors must_have_any_of_selectors],
|
|
225
|
+
%w[assert_matches_style must_match_style]] +
|
|
226
|
+
%w[selector xpath css].flat_map do |assertion|
|
|
227
|
+
[%W[assert_matches_#{assertion} must_match_#{assertion}],
|
|
228
|
+
%W[refute_matches_#{assertion} wont_match_#{assertion}]]
|
|
229
|
+
end).each do |(meth, new_name)|
|
|
230
|
+
class_eval <<-ASSERTION, __FILE__, __LINE__ + 1
|
|
231
|
+
def #{new_name} *args, &block
|
|
232
|
+
::Minitest::Expectation.new(self, ::Minitest::Spec.current).#{new_name}(*args, &block)
|
|
233
|
+
end
|
|
234
|
+
ASSERTION
|
|
235
|
+
|
|
236
|
+
::Minitest::Expectation.class_eval <<-ASSERTION, __FILE__, __LINE__ + 1
|
|
237
|
+
def #{new_name} *args, &block
|
|
238
|
+
ctx.#{meth}(target, *args, &block)
|
|
239
|
+
end
|
|
240
|
+
ASSERTION
|
|
241
|
+
end
|
|
242
|
+
# rubocop:enable Style/MultilineBlockChain
|
|
243
|
+
|
|
244
|
+
##
|
|
245
|
+
# @deprecated
|
|
246
|
+
def must_have_style(*args, &block)
|
|
247
|
+
warn 'must_have_style is deprecated, please use must_match_style'
|
|
248
|
+
must_match_style(*args, &block)
|
|
249
|
+
end
|
|
250
|
+
end
|
|
251
|
+
end
|
|
252
|
+
end
|
|
253
|
+
|
|
254
|
+
class Capybara::Session
|
|
255
|
+
include Capybara::Minitest::Expectations unless ENV['MT_NO_EXPECTATIONS']
|
|
256
|
+
end
|
|
257
|
+
|
|
258
|
+
class Capybara::Node::Base
|
|
259
|
+
include Capybara::Minitest::Expectations unless ENV['MT_NO_EXPECTATIONS']
|
|
260
|
+
end
|
|
261
|
+
|
|
262
|
+
class Capybara::Node::Simple
|
|
263
|
+
include Capybara::Minitest::Expectations unless ENV['MT_NO_EXPECTATIONS']
|
|
264
|
+
end
|
|
@@ -0,0 +1,420 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Capybara
|
|
4
|
+
module Node
|
|
5
|
+
module Actions
|
|
6
|
+
# @!macro waiting_behavior
|
|
7
|
+
# If the driver is capable of executing JavaScript, this method will wait for a set amount of time
|
|
8
|
+
# and continuously retry finding the element until either the element is found or the time
|
|
9
|
+
# expires. The length of time this method will wait is controlled through {Capybara.configure default_max_wait_time}.
|
|
10
|
+
#
|
|
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
|
+
##
|
|
15
|
+
#
|
|
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
|
+
#
|
|
19
|
+
# @overload click_link_or_button([locator], **options)
|
|
20
|
+
# @macro waiting_behavior
|
|
21
|
+
# @param [String] locator See {#click_button} and {#click_link}
|
|
22
|
+
#
|
|
23
|
+
# @return [Capybara::Node::Element] The element clicked
|
|
24
|
+
#
|
|
25
|
+
def click_link_or_button(locator = nil, **options)
|
|
26
|
+
find(:link_or_button, locator, **options).click
|
|
27
|
+
end
|
|
28
|
+
alias_method :click_on, :click_link_or_button
|
|
29
|
+
|
|
30
|
+
##
|
|
31
|
+
#
|
|
32
|
+
# Finds a link by id, {Capybara.configure test_id} attribute, text or title and clicks it. Also looks at image
|
|
33
|
+
# alt text inside the link.
|
|
34
|
+
#
|
|
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
|
+
#
|
|
40
|
+
# @return [Capybara::Node::Element] The element clicked
|
|
41
|
+
def click_link(locator = nil, **options)
|
|
42
|
+
find(:link, locator, **options).click
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
##
|
|
46
|
+
#
|
|
47
|
+
# Finds a button on the page and clicks it.
|
|
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.
|
|
51
|
+
#
|
|
52
|
+
# @overload click_button([locator], **options)
|
|
53
|
+
# @macro waiting_behavior
|
|
54
|
+
# @param [String] locator Which button to find
|
|
55
|
+
# @param [Hash] options See {Capybara::Node::Finders#find_button}
|
|
56
|
+
# @return [Capybara::Node::Element] The element clicked
|
|
57
|
+
def click_button(locator = nil, **options)
|
|
58
|
+
find(:button, locator, **options).click
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
##
|
|
62
|
+
#
|
|
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.
|
|
66
|
+
#
|
|
67
|
+
# # will fill in a descendant fillable field with name, id, or label text matching 'Name'
|
|
68
|
+
# page.fill_in 'Name', with: 'Bob'
|
|
69
|
+
#
|
|
70
|
+
# # will fill in `el` if it's a fillable field
|
|
71
|
+
# el.fill_in with: 'Tom'
|
|
72
|
+
#
|
|
73
|
+
#
|
|
74
|
+
# @overload fill_in([locator], with:, **options)
|
|
75
|
+
# @param [String] locator Which field to fill in
|
|
76
|
+
# @param [Hash] options
|
|
77
|
+
# @param with: [String] The value to fill in
|
|
78
|
+
# @macro waiting_behavior
|
|
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)
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
# @!macro label_click
|
|
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
|
+
|
|
98
|
+
##
|
|
99
|
+
#
|
|
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.
|
|
103
|
+
#
|
|
104
|
+
# # will choose a descendant radio button with a name, id, or label text matching 'Male'
|
|
105
|
+
# page.choose('Male')
|
|
106
|
+
#
|
|
107
|
+
# # will choose `el` if it's a radio button element
|
|
108
|
+
# el.choose()
|
|
109
|
+
#
|
|
110
|
+
# @overload choose([locator], **options)
|
|
111
|
+
# @param [String] locator Which radio button to choose
|
|
112
|
+
#
|
|
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
|
|
117
|
+
# @macro waiting_behavior
|
|
118
|
+
# @macro label_click
|
|
119
|
+
#
|
|
120
|
+
# @return [Capybara::Node::Element] The element chosen or the label clicked
|
|
121
|
+
def choose(locator = nil, **options)
|
|
122
|
+
_check_with_label(:radio_button, true, locator, **options)
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
##
|
|
126
|
+
#
|
|
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.
|
|
130
|
+
#
|
|
131
|
+
# # will check a descendant checkbox with a name, id, or label text matching 'German'
|
|
132
|
+
# page.check('German')
|
|
133
|
+
#
|
|
134
|
+
# # will check `el` if it's a checkbox element
|
|
135
|
+
# el.check()
|
|
136
|
+
#
|
|
137
|
+
#
|
|
138
|
+
# @overload check([locator], **options)
|
|
139
|
+
# @param [String] locator Which check box to check
|
|
140
|
+
#
|
|
141
|
+
# @option options [String] option Value of the checkbox to select
|
|
142
|
+
# @option options [String, Regexp] id Match fields that match the id attribute
|
|
143
|
+
# @option options [String] name Match fields that match the name attribute
|
|
144
|
+
# @option options [String, Array<String>, Regexp] class Match fields that match the class(es) provided
|
|
145
|
+
# @macro label_click
|
|
146
|
+
# @macro waiting_behavior
|
|
147
|
+
#
|
|
148
|
+
# @return [Capybara::Node::Element] The element checked or the label clicked
|
|
149
|
+
def check(locator = nil, **options)
|
|
150
|
+
_check_with_label(:checkbox, true, locator, **options)
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
##
|
|
154
|
+
#
|
|
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.
|
|
158
|
+
#
|
|
159
|
+
# # will uncheck a descendant checkbox with a name, id, or label text matching 'German'
|
|
160
|
+
# page.uncheck('German')
|
|
161
|
+
#
|
|
162
|
+
# # will uncheck `el` if it's a checkbox element
|
|
163
|
+
# el.uncheck()
|
|
164
|
+
#
|
|
165
|
+
#
|
|
166
|
+
# @overload uncheck([locator], **options)
|
|
167
|
+
# @param [String] locator Which check box to uncheck
|
|
168
|
+
#
|
|
169
|
+
# @option options [String] option Value of the checkbox to deselect
|
|
170
|
+
# @option options [String, Regexp] id Match fields that match the id attribute
|
|
171
|
+
# @option options [String] name Match fields that match the name attribute
|
|
172
|
+
# @option options [String, Array<String>, Regexp] class Match fields that match the class(es) provided
|
|
173
|
+
# @macro label_click
|
|
174
|
+
# @macro waiting_behavior
|
|
175
|
+
#
|
|
176
|
+
# @return [Capybara::Node::Element] The element unchecked or the label clicked
|
|
177
|
+
def uncheck(locator = nil, **options)
|
|
178
|
+
_check_with_label(:checkbox, false, locator, **options)
|
|
179
|
+
end
|
|
180
|
+
|
|
181
|
+
##
|
|
182
|
+
#
|
|
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.
|
|
185
|
+
# Otherwise it finds an option inside current scope and selects it.
|
|
186
|
+
# If the select box is a multiple select, {#select} can be called multiple times to select more than
|
|
187
|
+
# one option.
|
|
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.
|
|
190
|
+
#
|
|
191
|
+
# page.select 'March', from: 'Month'
|
|
192
|
+
#
|
|
193
|
+
# @overload select(value = nil, from: nil, **options)
|
|
194
|
+
# @macro waiting_behavior
|
|
195
|
+
#
|
|
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
|
|
198
|
+
#
|
|
199
|
+
# @return [Capybara::Node::Element] The option element selected
|
|
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)
|
|
207
|
+
else
|
|
208
|
+
el.find(:option, value, **options).select_option
|
|
209
|
+
end
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
##
|
|
213
|
+
#
|
|
214
|
+
# Find a select box on the page and unselect a particular option from it. If the select
|
|
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.
|
|
218
|
+
#
|
|
219
|
+
# page.unselect 'March', from: 'Month'
|
|
220
|
+
#
|
|
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
|
|
226
|
+
#
|
|
227
|
+
#
|
|
228
|
+
# @return [Capybara::Node::Element] The option element unselected
|
|
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
|
|
234
|
+
end
|
|
235
|
+
|
|
236
|
+
##
|
|
237
|
+
#
|
|
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.
|
|
246
|
+
#
|
|
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')
|
|
249
|
+
#
|
|
250
|
+
# # will attach file to el if it's a file input element
|
|
251
|
+
# el.attach_file('/path/to/file.png')
|
|
252
|
+
#
|
|
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
|
|
257
|
+
#
|
|
258
|
+
# @overload attach_file([locator], paths, **options)
|
|
259
|
+
# @macro waiting_behavior
|
|
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
|
|
277
|
+
# @return [Capybara::Node::Element] The file field element
|
|
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'
|
|
281
|
+
end
|
|
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.'
|
|
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) }
|
|
302
|
+
else
|
|
303
|
+
(file_field || find(:file_field, locator, **options)).set(paths)
|
|
304
|
+
end
|
|
305
|
+
end
|
|
306
|
+
|
|
307
|
+
private
|
|
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
|
+
begin
|
|
312
|
+
find(:select, from, **options)
|
|
313
|
+
rescue Capybara::ElementNotFound => select_error # rubocop:disable Naming/RescuedExceptionsVariableName
|
|
314
|
+
raise if %i[selected with_selected multiple].any? { |option| options.key?(option) }
|
|
315
|
+
|
|
316
|
+
begin
|
|
317
|
+
find(:datalist_input, from, **options)
|
|
318
|
+
rescue Capybara::ElementNotFound => dlinput_error # rubocop:disable Naming/RescuedExceptionsVariableName
|
|
319
|
+
raise Capybara::ElementNotFound, "#{select_error.message} and #{dlinput_error.message}"
|
|
320
|
+
end
|
|
321
|
+
end
|
|
322
|
+
end
|
|
323
|
+
end
|
|
324
|
+
|
|
325
|
+
def select_datalist_option(input, value)
|
|
326
|
+
datalist_options = input.evaluate_script(DATALIST_OPTIONS_SCRIPT)
|
|
327
|
+
option = datalist_options.find { |opt| opt.values_at('value', 'label').include?(value) }
|
|
328
|
+
raise ::Capybara::ElementNotFound, %(Unable to find datalist option "#{value}") unless option
|
|
329
|
+
|
|
330
|
+
input.set(option['value'])
|
|
331
|
+
rescue ::Capybara::NotSupportedByDriverError
|
|
332
|
+
# Implement for drivers that don't support JS
|
|
333
|
+
datalist = find(:xpath, XPath.descendant(:datalist)[XPath.attr(:id) == input[:list]], visible: false)
|
|
334
|
+
option = datalist.find(:datalist_option, value, disabled: false)
|
|
335
|
+
input.set(option.value)
|
|
336
|
+
end
|
|
337
|
+
|
|
338
|
+
def while_visible(element, visible_css)
|
|
339
|
+
if visible_css == true
|
|
340
|
+
visible_css = { opacity: 1, display: 'block', visibility: 'visible', width: 'auto', height: 'auto' }
|
|
341
|
+
end
|
|
342
|
+
_update_style(element, visible_css)
|
|
343
|
+
unless element.visible?
|
|
344
|
+
raise ExpectationNotMet, 'The style changes in :make_visible did not make the file input visible'
|
|
345
|
+
end
|
|
346
|
+
|
|
347
|
+
begin
|
|
348
|
+
yield element
|
|
349
|
+
ensure
|
|
350
|
+
_reset_style(element)
|
|
351
|
+
end
|
|
352
|
+
end
|
|
353
|
+
|
|
354
|
+
def _update_style(element, style)
|
|
355
|
+
element.execute_script(UPDATE_STYLE_SCRIPT, style)
|
|
356
|
+
rescue Capybara::NotSupportedByDriverError
|
|
357
|
+
warn 'The :make_visible option is not supported by the current driver - ignoring'
|
|
358
|
+
end
|
|
359
|
+
|
|
360
|
+
def _reset_style(element)
|
|
361
|
+
element.execute_script(RESET_STYLE_SCRIPT)
|
|
362
|
+
rescue StandardError # rubocop:disable Lint/SuppressedException swallow extra errors
|
|
363
|
+
end
|
|
364
|
+
|
|
365
|
+
def _check_with_label(selector, checked, locator,
|
|
366
|
+
allow_label_click: session_options.automatic_label_click, **options)
|
|
367
|
+
options[:allow_self] = true if locator.nil?
|
|
368
|
+
|
|
369
|
+
synchronize(Capybara::Queries::BaseQuery.wait(options, session_options.default_max_wait_time)) do
|
|
370
|
+
begin
|
|
371
|
+
el = find(selector, locator, **options)
|
|
372
|
+
el.set(checked)
|
|
373
|
+
rescue StandardError => e
|
|
374
|
+
raise unless allow_label_click && catch_error?(e)
|
|
375
|
+
|
|
376
|
+
begin
|
|
377
|
+
el ||= find(selector, locator, **options.merge(visible: :all))
|
|
378
|
+
el.session.find(:label, for: el, visible: true).click unless el.checked? == checked
|
|
379
|
+
rescue StandardError # swallow extra errors - raise original
|
|
380
|
+
raise e
|
|
381
|
+
end
|
|
382
|
+
end
|
|
383
|
+
end
|
|
384
|
+
end
|
|
385
|
+
|
|
386
|
+
UPDATE_STYLE_SCRIPT = <<~'JS'
|
|
387
|
+
this.capybara_style_cache = this.style.cssText;
|
|
388
|
+
var css = arguments[0];
|
|
389
|
+
for (var prop in css){
|
|
390
|
+
if (css.hasOwnProperty(prop)) {
|
|
391
|
+
this.style.setProperty(prop, css[prop], "important");
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
JS
|
|
395
|
+
|
|
396
|
+
RESET_STYLE_SCRIPT = <<~'JS'
|
|
397
|
+
if (this.hasOwnProperty('capybara_style_cache')) {
|
|
398
|
+
this.style.cssText = this.capybara_style_cache;
|
|
399
|
+
delete this.capybara_style_cache;
|
|
400
|
+
}
|
|
401
|
+
JS
|
|
402
|
+
|
|
403
|
+
DATALIST_OPTIONS_SCRIPT = <<~'JS'
|
|
404
|
+
Array.prototype.slice.call((this.list||{}).options || []).
|
|
405
|
+
filter(function(el){ return !el.disabled }).
|
|
406
|
+
map(function(el){ return { "value": el.value, "label": el.label} })
|
|
407
|
+
JS
|
|
408
|
+
|
|
409
|
+
CAPTURE_FILE_ELEMENT_SCRIPT = <<~'JS'
|
|
410
|
+
document.addEventListener('click', function file_catcher(e){
|
|
411
|
+
if (e.target.matches("input[type='file']")) {
|
|
412
|
+
window._capybara_clicked_file_input = e.target;
|
|
413
|
+
this.removeEventListener('click', file_catcher);
|
|
414
|
+
e.preventDefault();
|
|
415
|
+
}
|
|
416
|
+
})
|
|
417
|
+
JS
|
|
418
|
+
end
|
|
419
|
+
end
|
|
420
|
+
end
|