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,28 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'capybara/rspec/matchers/base'
|
|
4
|
+
|
|
5
|
+
module Capybara
|
|
6
|
+
module RSpecMatchers
|
|
7
|
+
module Matchers
|
|
8
|
+
class HaveAncestor < CountableWrappedElementMatcher
|
|
9
|
+
def element_matches?(el)
|
|
10
|
+
el.assert_ancestor(*@args, **session_query_options, &@filter_block)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def element_does_not_match?(el)
|
|
14
|
+
el.assert_no_ancestor(*@args, **session_query_options, &@filter_block)
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
"have ancestor #{query.description}"
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def query
|
|
22
|
+
# @query ||= Capybara::Queries::AncestorQuery.new(*session_query_args, &@filter_block)
|
|
23
|
+
@query ||= Capybara::Queries::AncestorQuery.new(*session_query_args, **session_query_options, &@filter_block)
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'capybara/rspec/matchers/base'
|
|
4
|
+
|
|
5
|
+
module Capybara
|
|
6
|
+
module RSpecMatchers
|
|
7
|
+
module Matchers
|
|
8
|
+
class HaveCurrentPath < WrappedElementMatcher
|
|
9
|
+
def element_matches?(el)
|
|
10
|
+
el.assert_current_path(current_path, **@kw_args)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def element_does_not_match?(el)
|
|
14
|
+
el.assert_no_current_path(current_path, **@kw_args)
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
"have current path #{current_path.inspect}"
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
private
|
|
22
|
+
|
|
23
|
+
def current_path
|
|
24
|
+
@args.first
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'capybara/rspec/matchers/base'
|
|
4
|
+
|
|
5
|
+
module Capybara
|
|
6
|
+
module RSpecMatchers
|
|
7
|
+
module Matchers
|
|
8
|
+
class HaveSelector < CountableWrappedElementMatcher
|
|
9
|
+
def initialize(*args, **kw_args, &filter_block)
|
|
10
|
+
super
|
|
11
|
+
if (RUBY_VERSION >= '2.7') && (@args.size < 2) && @kw_args.keys.any?(String) # rubocop:disable Style/GuardClause
|
|
12
|
+
@args.push(@kw_args)
|
|
13
|
+
@kw_args = {}
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def element_matches?(el)
|
|
18
|
+
el.assert_selector(*@args, **session_query_options, &@filter_block)
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def element_does_not_match?(el)
|
|
22
|
+
el.assert_no_selector(*@args, **session_query_options, &@filter_block)
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
def description
|
|
26
|
+
"have #{query.description}"
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
def query
|
|
30
|
+
@query ||= Capybara::Queries::SelectorQuery.new(*session_query_args, **session_query_options, &@filter_block)
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
class HaveAllSelectors < WrappedElementMatcher
|
|
35
|
+
def element_matches?(el)
|
|
36
|
+
el.assert_all_of_selectors(*@args, **session_query_options, &@filter_block)
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
def does_not_match?(_actual)
|
|
40
|
+
raise ArgumentError, 'The have_all_selectors matcher does not support use with not_to/should_not'
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
def description
|
|
44
|
+
'have all selectors'
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
class HaveNoSelectors < WrappedElementMatcher
|
|
49
|
+
def element_matches?(el)
|
|
50
|
+
el.assert_none_of_selectors(*@args, **session_query_options, &@filter_block)
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
def does_not_match?(_actual)
|
|
54
|
+
raise ArgumentError, 'The have_none_of_selectors matcher does not support use with not_to/should_not'
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
def description
|
|
58
|
+
'have no selectors'
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
class HaveAnySelectors < WrappedElementMatcher
|
|
63
|
+
def element_matches?(el)
|
|
64
|
+
el.assert_any_of_selectors(*@args, **session_query_options, &@filter_block)
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
def does_not_match?(_actual)
|
|
68
|
+
el.assert_none_of_selectors(*@args, **session_query_options, &@filter_block)
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
def description
|
|
72
|
+
'have any selectors'
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
end
|
|
77
|
+
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'capybara/rspec/matchers/base'
|
|
4
|
+
|
|
5
|
+
module Capybara
|
|
6
|
+
module RSpecMatchers
|
|
7
|
+
module Matchers
|
|
8
|
+
class HaveSibling < CountableWrappedElementMatcher
|
|
9
|
+
def element_matches?(el)
|
|
10
|
+
el.assert_sibling(*@args, **session_query_options, &@filter_block)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def element_does_not_match?(el)
|
|
14
|
+
el.assert_no_sibling(*@args, **session_query_options, &@filter_block)
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
"have sibling #{query.description}"
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def query
|
|
22
|
+
@query ||= Capybara::Queries::SiblingQuery.new(*session_query_args, **session_query_options, &@filter_block)
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'capybara/rspec/matchers/base'
|
|
4
|
+
|
|
5
|
+
module Capybara
|
|
6
|
+
module RSpecMatchers
|
|
7
|
+
module Matchers
|
|
8
|
+
class HaveText < CountableWrappedElementMatcher
|
|
9
|
+
def element_matches?(el)
|
|
10
|
+
el.assert_text(*@args, **@kw_args)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def element_does_not_match?(el)
|
|
14
|
+
el.assert_no_text(*@args, **@kw_args)
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
"have text #{format(text)}"
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def format(content)
|
|
22
|
+
content.inspect
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
private
|
|
26
|
+
|
|
27
|
+
def text
|
|
28
|
+
@args[0].is_a?(Symbol) ? @args[1] : @args[0]
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'capybara/rspec/matchers/base'
|
|
4
|
+
|
|
5
|
+
module Capybara
|
|
6
|
+
module RSpecMatchers
|
|
7
|
+
module Matchers
|
|
8
|
+
class HaveTitle < WrappedElementMatcher
|
|
9
|
+
def element_matches?(el)
|
|
10
|
+
el.assert_title(*@args, **@kw_args)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def element_does_not_match?(el)
|
|
14
|
+
el.assert_no_title(*@args, **@kw_args)
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
"have title #{title.inspect}"
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
private
|
|
22
|
+
|
|
23
|
+
def title
|
|
24
|
+
@args.first
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'capybara/rspec/matchers/have_selector'
|
|
4
|
+
|
|
5
|
+
module Capybara
|
|
6
|
+
module RSpecMatchers
|
|
7
|
+
module Matchers
|
|
8
|
+
class MatchSelector < HaveSelector
|
|
9
|
+
def element_matches?(el)
|
|
10
|
+
el.assert_matches_selector(*@args, **session_query_options, &@filter_block)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def element_does_not_match?(el)
|
|
14
|
+
el.assert_not_matches_selector(*@args, **session_query_options, &@filter_block)
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
"match #{query.description}"
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def query
|
|
22
|
+
@query ||= Capybara::Queries::MatchQuery.new(*session_query_args, **session_query_options, &@filter_block)
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'capybara/rspec/matchers/base'
|
|
4
|
+
|
|
5
|
+
module Capybara
|
|
6
|
+
module RSpecMatchers
|
|
7
|
+
module Matchers
|
|
8
|
+
class MatchStyle < WrappedElementMatcher
|
|
9
|
+
def element_matches?(el)
|
|
10
|
+
el.assert_matches_style(*@args, **@kw_args)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def does_not_match?(_actual)
|
|
14
|
+
raise ArgumentError, 'The match_style matcher does not support use with not_to/should_not'
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def description
|
|
18
|
+
'match style'
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
module Capybara
|
|
26
|
+
module RSpecMatchers
|
|
27
|
+
module Matchers
|
|
28
|
+
##
|
|
29
|
+
# @deprecated
|
|
30
|
+
class HaveStyle < MatchStyle
|
|
31
|
+
def initialize(*args, **kw_args, &filter_block)
|
|
32
|
+
warn 'HaveStyle matcher is deprecated, please use the MatchStyle matcher instead'
|
|
33
|
+
super
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Capybara
|
|
4
|
+
module RSpecMatchers
|
|
5
|
+
module SpatialSugar
|
|
6
|
+
def above(el)
|
|
7
|
+
options[:above] = el
|
|
8
|
+
self
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def below(el)
|
|
12
|
+
options[:below] = el
|
|
13
|
+
self
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def left_of(el)
|
|
17
|
+
options[:left_of] = el
|
|
18
|
+
self
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def right_of(el)
|
|
22
|
+
options[:right_of] = el
|
|
23
|
+
self
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def near(el)
|
|
27
|
+
options[:near] = el
|
|
28
|
+
self
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
private
|
|
32
|
+
|
|
33
|
+
def options
|
|
34
|
+
# (@args.last.is_a?(Hash) ? @args : @args.push({})).last
|
|
35
|
+
@kw_args
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
end
|
|
@@ -0,0 +1,233 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'capybara/selector/xpath_extensions'
|
|
4
|
+
require 'capybara/selector/selector'
|
|
5
|
+
require 'capybara/selector/definition'
|
|
6
|
+
|
|
7
|
+
#
|
|
8
|
+
# All Selectors below support the listed selector specific filters in addition to the following system-wide filters
|
|
9
|
+
# * :id (String, Regexp, XPath::Expression) - Matches the id attribute
|
|
10
|
+
# * :class (String, Array<String>, Regexp, XPath::Expression) - Matches the class(es) provided
|
|
11
|
+
# * :style (String, Regexp, Hash<String, String>) - Match on elements style
|
|
12
|
+
# * :above (Element) - Match elements above the passed element on the page
|
|
13
|
+
# * :below (Element) - Match elements below the passed element on the page
|
|
14
|
+
# * :left_of (Element) - Match elements left of the passed element on the page
|
|
15
|
+
# * :right_of (Element) - Match elements right of the passed element on the page
|
|
16
|
+
# * :near (Element) - Match elements near (within 50px) the passed element on the page
|
|
17
|
+
#
|
|
18
|
+
# ### Built-in Selectors
|
|
19
|
+
#
|
|
20
|
+
# * **:xpath** - Select elements by XPath expression
|
|
21
|
+
# * Locator: An XPath expression
|
|
22
|
+
#
|
|
23
|
+
# * **:css** - Select elements by CSS selector
|
|
24
|
+
# * Locator: A CSS selector
|
|
25
|
+
#
|
|
26
|
+
# * **:id** - Select element by id
|
|
27
|
+
# * Locator: (String, Regexp, XPath::Expression) The id of the element to match
|
|
28
|
+
#
|
|
29
|
+
# * **:field** - Select field elements (input [not of type submit, image, or hidden], textarea, select)
|
|
30
|
+
# * Locator: Matches against the id, {Capybara.configure test_id} attribute, name, placeholder, or
|
|
31
|
+
# associated label text
|
|
32
|
+
# * Filters:
|
|
33
|
+
# * :name (String, Regexp) - Matches the name attribute
|
|
34
|
+
# * :placeholder (String, Regexp) - Matches the placeholder attribute
|
|
35
|
+
# * :type (String) - Matches the type attribute of the field or element type for 'textarea' and 'select'
|
|
36
|
+
# * :readonly (Boolean) - Match on the element being readonly
|
|
37
|
+
# * :with (String, Regexp) - Matches the current value of the field
|
|
38
|
+
# * :checked (Boolean) - Match checked fields?
|
|
39
|
+
# * :unchecked (Boolean) - Match unchecked fields?
|
|
40
|
+
# * :disabled (Boolean, :all) - Match disabled field? (Default: false)
|
|
41
|
+
# * :multiple (Boolean) - Match fields that accept multiple values
|
|
42
|
+
# * :valid (Boolean) - Match fields that are valid/invalid according to HTML5 form validation
|
|
43
|
+
#
|
|
44
|
+
# * **:fieldset** - Select fieldset elements
|
|
45
|
+
# * Locator: Matches id, {Capybara.configure test_id}, or contents of wrapped legend
|
|
46
|
+
# * Filters:
|
|
47
|
+
# * :legend (String) - Matches contents of wrapped legend
|
|
48
|
+
# * :disabled (Boolean) - Match disabled fieldset?
|
|
49
|
+
#
|
|
50
|
+
# * **:link** - Find links (`<a>` elements with an href attribute)
|
|
51
|
+
# * Locator: Matches the id, {Capybara.configure test_id}, or title attributes, or the string content of the link,
|
|
52
|
+
# or the alt attribute of a contained img element. By default this selector requires a link to have an href attribute.
|
|
53
|
+
# * Filters:
|
|
54
|
+
# * :title (String) - Matches the title attribute
|
|
55
|
+
# * :alt (String) - Matches the alt attribute of a contained img element
|
|
56
|
+
# * :href (String, Regexp, nil, false) - Matches the normalized href of the link, if nil will find `<a>` elements with no href attribute, if false ignores href presence
|
|
57
|
+
#
|
|
58
|
+
# * **:button** - Find buttons ( input [of type submit, reset, image, button] or button elements )
|
|
59
|
+
# * Locator: Matches the id, {Capybara.configure test_id} attribute, name, value, or title attributes, string content of a button, or the alt attribute of an image type button or of a descendant image of a button
|
|
60
|
+
# * Filters:
|
|
61
|
+
# * :name (String, Regexp) - Matches the name attribute
|
|
62
|
+
# * :title (String) - Matches the title attribute
|
|
63
|
+
# * :value (String) - Matches the value of an input button
|
|
64
|
+
# * :type (String) - Matches the type attribute
|
|
65
|
+
# * :disabled (Boolean, :all) - Match disabled buttons (Default: false)
|
|
66
|
+
#
|
|
67
|
+
# * **:link_or_button** - Find links or buttons
|
|
68
|
+
# * Locator: See :link and :button selectors
|
|
69
|
+
# * Filters:
|
|
70
|
+
# * :disabled (Boolean, :all) - Match disabled buttons? (Default: false)
|
|
71
|
+
#
|
|
72
|
+
# * **:fillable_field** - Find text fillable fields ( textarea, input [not of type submit, image, radio, checkbox, hidden, file] )
|
|
73
|
+
# * Locator: Matches against the id, {Capybara.configure test_id} attribute, name, placeholder, or associated label text
|
|
74
|
+
# * Filters:
|
|
75
|
+
# * :name (String, Regexp) - Matches the name attribute
|
|
76
|
+
# * :placeholder (String, Regexp) - Matches the placeholder attribute
|
|
77
|
+
# * :with (String, Regexp) - Matches the current value of the field
|
|
78
|
+
# * :type (String) - Matches the type attribute of the field or element type for 'textarea'
|
|
79
|
+
# * :disabled (Boolean, :all) - Match disabled field? (Default: false)
|
|
80
|
+
# * :multiple (Boolean) - Match fields that accept multiple values
|
|
81
|
+
# * :valid (Boolean) - Match fields that are valid/invalid according to HTML5 form validation
|
|
82
|
+
#
|
|
83
|
+
# * **:radio_button** - Find radio buttons
|
|
84
|
+
# * Locator: Match id, {Capybara.configure test_id} attribute, name, or associated label text
|
|
85
|
+
# * Filters:
|
|
86
|
+
# * :name (String, Regexp) - Matches the name attribute
|
|
87
|
+
# * :checked (Boolean) - Match checked fields?
|
|
88
|
+
# * :unchecked (Boolean) - Match unchecked fields?
|
|
89
|
+
# * :disabled (Boolean, :all) - Match disabled field? (Default: false)
|
|
90
|
+
# * :option (String, Regexp) - Match the current value
|
|
91
|
+
# * :with - Alias of :option
|
|
92
|
+
#
|
|
93
|
+
# * **:checkbox** - Find checkboxes
|
|
94
|
+
# * Locator: Match id, {Capybara.configure test_id} attribute, name, or associated label text
|
|
95
|
+
# * Filters:
|
|
96
|
+
# * :name (String, Regexp) - Matches the name attribute
|
|
97
|
+
# * :checked (Boolean) - Match checked fields?
|
|
98
|
+
# * :unchecked (Boolean) - Match unchecked fields?
|
|
99
|
+
# * :disabled (Boolean, :all) - Match disabled field? (Default: false)
|
|
100
|
+
# * :with (String, Regexp) - Match the current value
|
|
101
|
+
# * :option - Alias of :with
|
|
102
|
+
#
|
|
103
|
+
# * **:select** - Find select elements
|
|
104
|
+
# * Locator: Match id, {Capybara.configure test_id} attribute, name, placeholder, or associated label text
|
|
105
|
+
# * Filters:
|
|
106
|
+
# * :name (String, Regexp) - Matches the name attribute
|
|
107
|
+
# * :placeholder (String, Placeholder) - Matches the placeholder attribute
|
|
108
|
+
# * :disabled (Boolean, :all) - Match disabled field? (Default: false)
|
|
109
|
+
# * :multiple (Boolean) - Match fields that accept multiple values
|
|
110
|
+
# * :options (Array<String>) - Exact match options
|
|
111
|
+
# * :enabled_options (Array<String>) - Exact match enabled options
|
|
112
|
+
# * :disabled_options (Array<String>) - Exact match disabled options
|
|
113
|
+
# * :with_options (Array<String>) - Partial match options
|
|
114
|
+
# * :selected (String, Array<String>) - Match the selection(s)
|
|
115
|
+
# * :with_selected (String, Array<String>) - Partial match the selection(s)
|
|
116
|
+
#
|
|
117
|
+
# * **:option** - Find option elements
|
|
118
|
+
# * Locator: Match text of option
|
|
119
|
+
# * Filters:
|
|
120
|
+
# * :disabled (Boolean) - Match disabled option
|
|
121
|
+
# * :selected (Boolean) - Match selected option
|
|
122
|
+
#
|
|
123
|
+
# * **:datalist_input** - Find input field with datalist completion
|
|
124
|
+
# * Locator: Matches against the id, {Capybara.configure test_id} attribute, name,
|
|
125
|
+
# placeholder, or associated label text
|
|
126
|
+
# * Filters:
|
|
127
|
+
# * :name (String, Regexp) - Matches the name attribute
|
|
128
|
+
# * :placeholder (String, Regexp) - Matches the placeholder attribute
|
|
129
|
+
# * :disabled (Boolean, :all) - Match disabled field? (Default: false)
|
|
130
|
+
# * :options (Array<String>) - Exact match options
|
|
131
|
+
# * :with_options (Array<String>) - Partial match options
|
|
132
|
+
#
|
|
133
|
+
# * **:datalist_option** - Find datalist option
|
|
134
|
+
# * Locator: Match text or value of option
|
|
135
|
+
# * Filters:
|
|
136
|
+
# * :disabled (Boolean) - Match disabled option
|
|
137
|
+
#
|
|
138
|
+
# * **:file_field** - Find file input elements
|
|
139
|
+
# * Locator: Match id, {Capybara.configure test_id} attribute, name, or associated label text
|
|
140
|
+
# * Filters:
|
|
141
|
+
# * :name (String, Regexp) - Matches the name attribute
|
|
142
|
+
# * :disabled (Boolean, :all) - Match disabled field? (Default: false)
|
|
143
|
+
# * :multiple (Boolean) - Match field that accepts multiple values
|
|
144
|
+
#
|
|
145
|
+
# * **:label** - Find label elements
|
|
146
|
+
# * Locator: Match id, {Capybara.configure test_id}, or text contents
|
|
147
|
+
# * Filters:
|
|
148
|
+
# * :for (Element, String, Regexp) - The element or id of the element associated with the label
|
|
149
|
+
#
|
|
150
|
+
# * **:table** - Find table elements
|
|
151
|
+
# * Locator: id, {Capybara.configure test_id}, or caption text of table
|
|
152
|
+
# * Filters:
|
|
153
|
+
# * :caption (String) - Match text of associated caption
|
|
154
|
+
# * :with_rows (Array<Array<String>>, Array<Hash<String, String>>) - Partial match `<td>` data - visibility of `<td>` elements is not considered
|
|
155
|
+
# * :rows (Array<Array<String>>) - Match all `<td>`s - visibility of `<td>` elements is not considered
|
|
156
|
+
# * :with_cols (Array<Array<String>>, Array<Hash<String, String>>) - Partial match `<td>` data - visibility of `<td>` elements is not considered
|
|
157
|
+
# * :cols (Array<Array<String>>) - Match all `<td>`s - visibility of `<td>` elements is not considered
|
|
158
|
+
#
|
|
159
|
+
# * **:table_row** - Find table row
|
|
160
|
+
# * Locator: Array<String>, Hash<String, String> table row `<td>` contents - visibility of `<td>` elements is not considered
|
|
161
|
+
#
|
|
162
|
+
# * **:frame** - Find frame/iframe elements
|
|
163
|
+
# * Locator: Match id, {Capybara.configure test_id} attribute, or name
|
|
164
|
+
# * Filters:
|
|
165
|
+
# * :name (String) - Match name attribute
|
|
166
|
+
#
|
|
167
|
+
# * **:element**
|
|
168
|
+
# * Locator: Type of element ('div', 'a', etc) - if not specified defaults to '*'
|
|
169
|
+
# * Filters:
|
|
170
|
+
# * :\<any> (String, Regexp) - Match on any specified element attribute
|
|
171
|
+
#
|
|
172
|
+
class Capybara::Selector; end
|
|
173
|
+
|
|
174
|
+
Capybara::Selector::FilterSet.add(:_field) do
|
|
175
|
+
node_filter(:checked, :boolean) { |node, value| !(value ^ node.checked?) }
|
|
176
|
+
node_filter(:unchecked, :boolean) { |node, value| (value ^ node.checked?) }
|
|
177
|
+
node_filter(:disabled, :boolean, default: false, skip_if: :all) { |node, value| !(value ^ node.disabled?) }
|
|
178
|
+
node_filter(:valid, :boolean) { |node, value| node.evaluate_script('this.validity.valid') == value }
|
|
179
|
+
node_filter(:name) { |node, value| !value.is_a?(Regexp) || value.match?(node[:name]) }
|
|
180
|
+
node_filter(:placeholder) { |node, value| !value.is_a?(Regexp) || value.match?(node[:placeholder]) }
|
|
181
|
+
|
|
182
|
+
expression_filter(:name) do |xpath, val|
|
|
183
|
+
builder(xpath).add_attribute_conditions(name: val)
|
|
184
|
+
end
|
|
185
|
+
expression_filter(:placeholder) do |xpath, val|
|
|
186
|
+
builder(xpath).add_attribute_conditions(placeholder: val)
|
|
187
|
+
end
|
|
188
|
+
expression_filter(:disabled) { |xpath, val| val ? xpath : xpath[~XPath.attr(:disabled)] }
|
|
189
|
+
expression_filter(:multiple) { |xpath, val| xpath[val ? XPath.attr(:multiple) : ~XPath.attr(:multiple)] }
|
|
190
|
+
|
|
191
|
+
describe(:expression_filters) do |name: nil, placeholder: nil, disabled: nil, multiple: nil, **|
|
|
192
|
+
desc = +''
|
|
193
|
+
desc << ' that is not disabled' if disabled == false
|
|
194
|
+
desc << " with name #{name}" if name
|
|
195
|
+
desc << " with placeholder #{placeholder}" if placeholder
|
|
196
|
+
desc << ' with the multiple attribute' if multiple == true
|
|
197
|
+
desc << ' without the multiple attribute' if multiple == false
|
|
198
|
+
desc
|
|
199
|
+
end
|
|
200
|
+
|
|
201
|
+
describe(:node_filters) do |checked: nil, unchecked: nil, disabled: nil, valid: nil, **|
|
|
202
|
+
desc, states = +'', []
|
|
203
|
+
states << 'checked' if checked || (unchecked == false)
|
|
204
|
+
states << 'not checked' if unchecked || (checked == false)
|
|
205
|
+
states << 'disabled' if disabled == true
|
|
206
|
+
desc << " that is #{states.join(' and ')}" unless states.empty?
|
|
207
|
+
desc << ' that is valid' if valid == true
|
|
208
|
+
desc << ' that is invalid' if valid == false
|
|
209
|
+
desc
|
|
210
|
+
end
|
|
211
|
+
end
|
|
212
|
+
|
|
213
|
+
require 'capybara/selector/definition/xpath'
|
|
214
|
+
require 'capybara/selector/definition/css'
|
|
215
|
+
require 'capybara/selector/definition/id'
|
|
216
|
+
require 'capybara/selector/definition/field'
|
|
217
|
+
require 'capybara/selector/definition/fieldset'
|
|
218
|
+
require 'capybara/selector/definition/link'
|
|
219
|
+
require 'capybara/selector/definition/button'
|
|
220
|
+
require 'capybara/selector/definition/link_or_button'
|
|
221
|
+
require 'capybara/selector/definition/fillable_field'
|
|
222
|
+
require 'capybara/selector/definition/radio_button'
|
|
223
|
+
require 'capybara/selector/definition/checkbox'
|
|
224
|
+
require 'capybara/selector/definition/select'
|
|
225
|
+
require 'capybara/selector/definition/datalist_input'
|
|
226
|
+
require 'capybara/selector/definition/option'
|
|
227
|
+
require 'capybara/selector/definition/datalist_option'
|
|
228
|
+
require 'capybara/selector/definition/file_field'
|
|
229
|
+
require 'capybara/selector/definition/label'
|
|
230
|
+
require 'capybara/selector/definition/table'
|
|
231
|
+
require 'capybara/selector/definition/table_row'
|
|
232
|
+
require 'capybara/selector/definition/frame'
|
|
233
|
+
require 'capybara/selector/definition/element'
|