capybara 2.7.0 → 3.35.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.yardopts +1 -0
- data/History.md +1147 -11
- data/License.txt +1 -1
- data/README.md +252 -131
- data/lib/capybara/config.rb +92 -0
- data/lib/capybara/cucumber.rb +3 -3
- data/lib/capybara/driver/base.rb +52 -21
- data/lib/capybara/driver/node.rb +48 -14
- data/lib/capybara/dsl.rb +16 -9
- data/lib/capybara/helpers.rb +72 -81
- data/lib/capybara/minitest/spec.rb +267 -0
- data/lib/capybara/minitest.rb +385 -0
- data/lib/capybara/node/actions.rb +337 -89
- data/lib/capybara/node/base.rb +50 -32
- data/lib/capybara/node/document.rb +19 -3
- data/lib/capybara/node/document_matchers.rb +22 -24
- data/lib/capybara/node/element.rb +388 -125
- data/lib/capybara/node/finders.rb +231 -121
- data/lib/capybara/node/matchers.rb +503 -217
- data/lib/capybara/node/simple.rb +64 -27
- data/lib/capybara/queries/ancestor_query.rb +27 -0
- data/lib/capybara/queries/base_query.rb +87 -11
- data/lib/capybara/queries/current_path_query.rb +24 -24
- data/lib/capybara/queries/match_query.rb +15 -10
- data/lib/capybara/queries/selector_query.rb +675 -81
- 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 +88 -20
- data/lib/capybara/queries/title_query.rb +9 -11
- data/lib/capybara/rack_test/browser.rb +63 -39
- data/lib/capybara/rack_test/css_handlers.rb +6 -4
- data/lib/capybara/rack_test/driver.rb +26 -16
- data/lib/capybara/rack_test/errors.rb +6 -0
- data/lib/capybara/rack_test/form.rb +73 -58
- data/lib/capybara/rack_test/node.rb +187 -67
- data/lib/capybara/rails.rb +4 -8
- data/lib/capybara/registration_container.rb +44 -0
- data/lib/capybara/registrations/drivers.rb +42 -0
- data/lib/capybara/registrations/patches/puma_ssl.rb +29 -0
- data/lib/capybara/registrations/servers.rb +45 -0
- data/lib/capybara/result.rb +142 -14
- data/lib/capybara/rspec/features.rb +17 -42
- data/lib/capybara/rspec/matcher_proxies.rb +82 -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 +43 -0
- data/lib/capybara/rspec/matchers/spatial_sugar.rb +39 -0
- data/lib/capybara/rspec/matchers.rb +143 -244
- data/lib/capybara/rspec.rb +10 -12
- data/lib/capybara/selector/builders/css_builder.rb +84 -0
- data/lib/capybara/selector/builders/xpath_builder.rb +71 -0
- data/lib/capybara/selector/css.rb +102 -0
- data/lib/capybara/selector/definition/button.rb +63 -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 +28 -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 +54 -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/definition.rb +278 -0
- data/lib/capybara/selector/filter.rb +3 -46
- 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 +155 -0
- data/lib/capybara/selector/xpath_extensions.rb +17 -0
- data/lib/capybara/selector.rb +232 -369
- 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 +380 -142
- data/lib/capybara/selenium/driver_specializations/chrome_driver.rb +117 -0
- data/lib/capybara/selenium/driver_specializations/edge_driver.rb +124 -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 +76 -0
- data/lib/capybara/selenium/logger_suppressor.rb +40 -0
- data/lib/capybara/selenium/node.rb +528 -97
- data/lib/capybara/selenium/nodes/chrome_node.rb +137 -0
- data/lib/capybara/selenium/nodes/edge_node.rb +104 -0
- data/lib/capybara/selenium/nodes/firefox_node.rb +136 -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 +45 -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/animation_disabler.rb +63 -0
- data/lib/capybara/server/checker.rb +44 -0
- data/lib/capybara/server/middleware.rb +71 -0
- data/lib/capybara/server.rb +74 -71
- data/lib/capybara/session/config.rb +126 -0
- data/lib/capybara/session/matchers.rb +44 -27
- data/lib/capybara/session.rb +500 -297
- data/lib/capybara/spec/fixtures/no_extension +1 -0
- data/lib/capybara/spec/public/jquery.js +5 -5
- data/lib/capybara/spec/public/offset.js +6 -0
- data/lib/capybara/spec/public/test.js +168 -14
- data/lib/capybara/spec/session/accept_alert_spec.rb +37 -14
- data/lib/capybara/spec/session/accept_confirm_spec.rb +7 -6
- data/lib/capybara/spec/session/accept_prompt_spec.rb +38 -10
- data/lib/capybara/spec/session/all_spec.rb +179 -59
- 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 +154 -48
- data/lib/capybara/spec/session/body_spec.rb +12 -13
- data/lib/capybara/spec/session/check_spec.rb +168 -41
- data/lib/capybara/spec/session/choose_spec.rb +75 -23
- data/lib/capybara/spec/session/click_button_spec.rb +243 -175
- data/lib/capybara/spec/session/click_link_or_button_spec.rb +57 -32
- data/lib/capybara/spec/session/click_link_spec.rb +100 -53
- data/lib/capybara/spec/session/current_scope_spec.rb +11 -10
- data/lib/capybara/spec/session/current_url_spec.rb +61 -35
- data/lib/capybara/spec/session/dismiss_confirm_spec.rb +7 -7
- data/lib/capybara/spec/session/dismiss_prompt_spec.rb +5 -4
- data/lib/capybara/spec/session/element/{assert_match_selector.rb → assert_match_selector_spec.rb} +13 -6
- data/lib/capybara/spec/session/element/match_css_spec.rb +21 -7
- data/lib/capybara/spec/session/element/match_xpath_spec.rb +9 -7
- data/lib/capybara/spec/session/element/matches_selector_spec.rb +91 -34
- data/lib/capybara/spec/session/evaluate_async_script_spec.rb +23 -0
- data/lib/capybara/spec/session/evaluate_script_spec.rb +45 -3
- data/lib/capybara/spec/session/execute_script_spec.rb +24 -4
- data/lib/capybara/spec/session/fill_in_spec.rb +166 -64
- data/lib/capybara/spec/session/find_button_spec.rb +37 -18
- data/lib/capybara/spec/session/find_by_id_spec.rb +10 -9
- data/lib/capybara/spec/session/find_field_spec.rb +57 -34
- data/lib/capybara/spec/session/find_link_spec.rb +47 -10
- data/lib/capybara/spec/session/find_spec.rb +290 -144
- data/lib/capybara/spec/session/first_spec.rb +91 -48
- 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 +3 -2
- data/lib/capybara/spec/session/go_forward_spec.rb +3 -2
- 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 +76 -19
- data/lib/capybara/spec/session/has_css_spec.rb +277 -131
- data/lib/capybara/spec/session/has_current_path_spec.rb +98 -26
- data/lib/capybara/spec/session/has_field_spec.rb +177 -107
- data/lib/capybara/spec/session/has_link_spec.rb +13 -12
- data/lib/capybara/spec/session/has_none_selectors_spec.rb +78 -0
- data/lib/capybara/spec/session/has_select_spec.rb +191 -95
- data/lib/capybara/spec/session/has_selector_spec.rb +128 -64
- data/lib/capybara/spec/session/has_sibling_spec.rb +50 -0
- data/lib/capybara/spec/session/has_table_spec.rb +172 -5
- data/lib/capybara/spec/session/has_text_spec.rb +126 -60
- data/lib/capybara/spec/session/has_title_spec.rb +35 -12
- data/lib/capybara/spec/session/has_xpath_spec.rb +74 -53
- data/lib/capybara/spec/session/{headers.rb → headers_spec.rb} +3 -2
- data/lib/capybara/spec/session/html_spec.rb +14 -6
- data/lib/capybara/spec/session/matches_style_spec.rb +35 -0
- data/lib/capybara/spec/session/node_spec.rb +1028 -131
- data/lib/capybara/spec/session/node_wrapper_spec.rb +39 -0
- data/lib/capybara/spec/session/refresh_spec.rb +34 -0
- data/lib/capybara/spec/session/reset_session_spec.rb +75 -34
- data/lib/capybara/spec/session/{response_code.rb → response_code_spec.rb} +2 -1
- data/lib/capybara/spec/session/save_and_open_page_spec.rb +3 -2
- data/lib/capybara/spec/session/save_and_open_screenshot_spec.rb +11 -15
- data/lib/capybara/spec/session/save_page_spec.rb +42 -55
- data/lib/capybara/spec/session/save_screenshot_spec.rb +16 -14
- data/lib/capybara/spec/session/screenshot_spec.rb +2 -2
- data/lib/capybara/spec/session/scroll_spec.rb +117 -0
- data/lib/capybara/spec/session/select_spec.rb +112 -85
- data/lib/capybara/spec/session/selectors_spec.rb +71 -8
- data/lib/capybara/spec/session/sibling_spec.rb +52 -0
- data/lib/capybara/spec/session/text_spec.rb +38 -23
- data/lib/capybara/spec/session/title_spec.rb +17 -5
- data/lib/capybara/spec/session/uncheck_spec.rb +71 -12
- data/lib/capybara/spec/session/unselect_spec.rb +44 -43
- data/lib/capybara/spec/session/visit_spec.rb +99 -32
- data/lib/capybara/spec/session/window/become_closed_spec.rb +33 -29
- data/lib/capybara/spec/session/window/current_window_spec.rb +5 -3
- data/lib/capybara/spec/session/window/open_new_window_spec.rb +5 -3
- data/lib/capybara/spec/session/window/switch_to_window_spec.rb +39 -30
- data/lib/capybara/spec/session/window/window_opened_by_spec.rb +17 -10
- data/lib/capybara/spec/session/window/window_spec.rb +121 -73
- data/lib/capybara/spec/session/window/windows_spec.rb +12 -10
- data/lib/capybara/spec/session/window/within_window_spec.rb +52 -82
- data/lib/capybara/spec/session/within_spec.rb +76 -43
- data/lib/capybara/spec/spec_helper.rb +67 -33
- data/lib/capybara/spec/test_app.rb +85 -36
- data/lib/capybara/spec/views/animated.erb +49 -0
- data/lib/capybara/spec/views/buttons.erb +1 -1
- data/lib/capybara/spec/views/fieldsets.erb +1 -1
- data/lib/capybara/spec/views/form.erb +227 -20
- data/lib/capybara/spec/views/frame_child.erb +10 -2
- data/lib/capybara/spec/views/frame_one.erb +2 -1
- data/lib/capybara/spec/views/frame_parent.erb +2 -2
- data/lib/capybara/spec/views/frame_two.erb +1 -1
- data/lib/capybara/spec/views/header_links.erb +1 -1
- data/lib/capybara/spec/views/host_links.erb +1 -1
- 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 +1 -1
- data/lib/capybara/spec/views/popup_one.erb +1 -1
- data/lib/capybara/spec/views/popup_two.erb +1 -1
- data/lib/capybara/spec/views/postback.erb +1 -1
- 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 +69 -2
- data/lib/capybara/spec/views/with_animation.erb +82 -0
- data/lib/capybara/spec/views/with_base_tag.erb +1 -1
- data/lib/capybara/spec/views/with_count.erb +1 -1
- data/lib/capybara/spec/views/with_dragula.erb +24 -0
- data/lib/capybara/spec/views/with_fixed_header_footer.erb +17 -0
- data/lib/capybara/spec/views/with_hover.erb +7 -1
- data/lib/capybara/spec/views/with_hover1.erb +10 -0
- data/lib/capybara/spec/views/with_html.erb +100 -10
- data/lib/capybara/spec/views/with_html5_svg.erb +20 -0
- data/lib/capybara/spec/views/with_html_entities.erb +1 -1
- data/lib/capybara/spec/views/with_jquery_animation.erb +24 -0
- data/lib/capybara/spec/views/with_js.erb +49 -3
- 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 +1 -1
- data/lib/capybara/spec/views/with_scope_other.erb +6 -0
- data/lib/capybara/spec/views/with_simple_html.erb +1 -1
- data/lib/capybara/spec/views/with_sortable_js.erb +21 -0
- data/lib/capybara/spec/views/with_title.erb +1 -1
- data/lib/capybara/spec/views/with_unload_alert.erb +3 -1
- data/lib/capybara/spec/views/with_windows.erb +7 -1
- data/lib/capybara/spec/views/within_frames.erb +6 -3
- data/lib/capybara/version.rb +2 -1
- data/lib/capybara/window.rb +39 -21
- data/lib/capybara.rb +208 -186
- data/spec/basic_node_spec.rb +52 -39
- data/spec/capybara_spec.rb +72 -50
- data/spec/css_builder_spec.rb +101 -0
- data/spec/css_splitter_spec.rb +38 -0
- data/spec/dsl_spec.rb +81 -61
- 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 +7 -3
- data/spec/fixtures/selenium_driver_rspec_success.rb +7 -3
- data/spec/minitest_spec.rb +164 -0
- data/spec/minitest_spec_spec.rb +162 -0
- data/spec/per_session_config_spec.rb +68 -0
- data/spec/rack_test_spec.rb +189 -96
- data/spec/regexp_dissassembler_spec.rb +250 -0
- data/spec/result_spec.rb +143 -13
- data/spec/rspec/features_spec.rb +38 -32
- data/spec/rspec/scenarios_spec.rb +9 -7
- data/spec/rspec/shared_spec_matchers.rb +959 -0
- data/spec/rspec/views_spec.rb +9 -3
- data/spec/rspec_matchers_spec.rb +62 -0
- data/spec/rspec_spec.rb +127 -30
- data/spec/sauce_spec_chrome.rb +43 -0
- data/spec/selector_spec.rb +458 -37
- data/spec/selenium_spec_chrome.rb +196 -9
- data/spec/selenium_spec_chrome_remote.rb +100 -0
- data/spec/selenium_spec_edge.rb +47 -0
- data/spec/selenium_spec_firefox.rb +210 -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 +200 -101
- data/spec/session_spec.rb +91 -0
- data/spec/shared_selenium_node.rb +83 -0
- data/spec/shared_selenium_session.rb +558 -0
- data/spec/spec_helper.rb +94 -2
- data/spec/xpath_builder_spec.rb +93 -0
- metadata +420 -60
- data/lib/capybara/query.rb +0 -7
- data/lib/capybara/spec/session/assert_current_path.rb +0 -60
- data/lib/capybara/spec/session/assert_selector.rb +0 -148
- data/lib/capybara/spec/session/assert_text.rb +0 -196
- data/lib/capybara/spec/session/assert_title.rb +0 -70
- data/lib/capybara/spec/session/source_spec.rb +0 -0
- data/lib/capybara/spec/session/within_frame_spec.rb +0 -53
- data/spec/rspec/matchers_spec.rb +0 -827
- data/spec/selenium_spec.rb +0 -151
@@ -0,0 +1,77 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Capybara
|
4
|
+
class Selector
|
5
|
+
module Filters
|
6
|
+
class Base
|
7
|
+
def initialize(name, matcher, block, **options)
|
8
|
+
@name = name
|
9
|
+
@matcher = matcher
|
10
|
+
@block = block
|
11
|
+
@options = options
|
12
|
+
@options[:valid_values] = [true, false] if options[:boolean]
|
13
|
+
end
|
14
|
+
|
15
|
+
def default?
|
16
|
+
@options.key?(:default)
|
17
|
+
end
|
18
|
+
|
19
|
+
def default
|
20
|
+
@options[:default]
|
21
|
+
end
|
22
|
+
|
23
|
+
def skip?(value)
|
24
|
+
@options.key?(:skip_if) && value == @options[:skip_if]
|
25
|
+
end
|
26
|
+
|
27
|
+
def format
|
28
|
+
@options[:format]
|
29
|
+
end
|
30
|
+
|
31
|
+
def matcher?
|
32
|
+
!@matcher.nil?
|
33
|
+
end
|
34
|
+
|
35
|
+
def boolean?
|
36
|
+
!!@options[:boolean]
|
37
|
+
end
|
38
|
+
|
39
|
+
def handles_option?(option_name)
|
40
|
+
if matcher?
|
41
|
+
@matcher.match? option_name
|
42
|
+
else
|
43
|
+
@name == option_name
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
private
|
48
|
+
|
49
|
+
def apply(subject, name, value, skip_value, ctx)
|
50
|
+
return skip_value if skip?(value)
|
51
|
+
|
52
|
+
unless valid_value?(value)
|
53
|
+
raise ArgumentError,
|
54
|
+
"Invalid value #{value.inspect} passed to #{self.class.name.split('::').last} #{name}" \
|
55
|
+
"#{" : #{name}" if @name.is_a?(Regexp)}"
|
56
|
+
end
|
57
|
+
|
58
|
+
if @block.arity == 2
|
59
|
+
filter_context(ctx).instance_exec(subject, value, &@block)
|
60
|
+
else
|
61
|
+
filter_context(ctx).instance_exec(subject, name, value, &@block)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
def filter_context(context)
|
66
|
+
context || @block.binding.receiver
|
67
|
+
end
|
68
|
+
|
69
|
+
def valid_value?(value)
|
70
|
+
return true unless @options.key?(:valid_values)
|
71
|
+
|
72
|
+
Array(@options[:valid_values]).any? { |valid| valid === value } # rubocop:disable Style/CaseEquality
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'capybara/selector/filters/base'
|
4
|
+
|
5
|
+
module Capybara
|
6
|
+
class Selector
|
7
|
+
module Filters
|
8
|
+
class ExpressionFilter < Base
|
9
|
+
def apply_filter(expr, name, value, selector)
|
10
|
+
apply(expr, name, value, expr, selector)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
class IdentityExpressionFilter < ExpressionFilter
|
15
|
+
def initialize(name); super(name, nil, nil); end
|
16
|
+
def default?; false; end
|
17
|
+
def matcher?; false; end
|
18
|
+
def apply_filter(expr, _name, _value, _ctx); expr; end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'capybara/selector/filters/base'
|
4
|
+
|
5
|
+
module Capybara
|
6
|
+
class Selector
|
7
|
+
module Filters
|
8
|
+
class LocatorFilter < NodeFilter
|
9
|
+
def initialize(block, **options)
|
10
|
+
super(nil, nil, block, **options)
|
11
|
+
end
|
12
|
+
|
13
|
+
def matches?(node, value, context = nil, exact:)
|
14
|
+
apply(node, value, true, context, exact: exact, format: context&.default_format)
|
15
|
+
rescue Capybara::ElementNotFound
|
16
|
+
false
|
17
|
+
end
|
18
|
+
|
19
|
+
private
|
20
|
+
|
21
|
+
def apply(subject, value, skip_value, ctx, **options)
|
22
|
+
return skip_value if skip?(value)
|
23
|
+
|
24
|
+
filter_context(ctx).instance_exec(subject, value, **options, &@block)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'capybara/selector/filters/base'
|
4
|
+
|
5
|
+
module Capybara
|
6
|
+
class Selector
|
7
|
+
module Filters
|
8
|
+
class NodeFilter < Base
|
9
|
+
def initialize(name, matcher, block, **options)
|
10
|
+
super
|
11
|
+
@block = if boolean?
|
12
|
+
proc do |node, value|
|
13
|
+
error_cnt = errors.size
|
14
|
+
block.call(node, value).tap do |res|
|
15
|
+
add_error("Expected #{name} #{value} but it wasn't") if !res && error_cnt == errors.size
|
16
|
+
end
|
17
|
+
end
|
18
|
+
else
|
19
|
+
block
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def matches?(node, name, value, context = nil)
|
24
|
+
apply(node, name, value, true, context)
|
25
|
+
rescue Capybara::ElementNotFound
|
26
|
+
false
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,214 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'regexp_parser'
|
4
|
+
|
5
|
+
module Capybara
|
6
|
+
class Selector
|
7
|
+
# @api private
|
8
|
+
class RegexpDisassembler
|
9
|
+
def initialize(regexp)
|
10
|
+
@regexp = regexp
|
11
|
+
end
|
12
|
+
|
13
|
+
def alternated_substrings
|
14
|
+
@alternated_substrings ||= begin
|
15
|
+
or_strings = process(alternation: true)
|
16
|
+
remove_or_covered(or_strings)
|
17
|
+
or_strings.any?(&:empty?) ? [] : or_strings
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def substrings
|
22
|
+
@substrings ||= begin
|
23
|
+
strs = process(alternation: false).first
|
24
|
+
remove_and_covered(strs)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
private
|
29
|
+
|
30
|
+
def remove_and_covered(strings)
|
31
|
+
# delete_if is documented to modify the array after every block iteration - this doesn't appear to be true
|
32
|
+
# uniq the strings to prevent identical strings from removing each other
|
33
|
+
strings.uniq!
|
34
|
+
|
35
|
+
# If we have "ab" and "abcd" required - only need to check for "abcd"
|
36
|
+
strings.delete_if do |sub_string|
|
37
|
+
strings.any? do |cover_string|
|
38
|
+
next if sub_string.equal? cover_string
|
39
|
+
|
40
|
+
cover_string.include?(sub_string)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
def remove_or_covered(or_series)
|
46
|
+
# If we are going to match `("a" and "b") or ("ade" and "bce")` it only makes sense to match ("a" and "b")
|
47
|
+
|
48
|
+
# Ensure minimum sets of strings are being or'd
|
49
|
+
or_series.each { |strs| remove_and_covered(strs) }
|
50
|
+
|
51
|
+
# Remove any of the alternated string series that fully contain any other string series
|
52
|
+
or_series.delete_if do |and_strs|
|
53
|
+
or_series.any? do |and_strs2|
|
54
|
+
next if and_strs.equal? and_strs2
|
55
|
+
|
56
|
+
remove_and_covered(and_strs + and_strs2) == and_strs
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
def process(alternation:)
|
62
|
+
strs = extract_strings(Regexp::Parser.parse(@regexp), alternation: alternation)
|
63
|
+
strs = collapse(combine(strs).map(&:flatten))
|
64
|
+
strs.each { |str| str.map!(&:upcase) } if @regexp.casefold?
|
65
|
+
strs
|
66
|
+
end
|
67
|
+
|
68
|
+
def combine(strs)
|
69
|
+
suffixes = [[]]
|
70
|
+
strs.reverse_each do |str|
|
71
|
+
if str.is_a? Set
|
72
|
+
prefixes = str.each_with_object([]) { |s, memo| memo.concat combine(s) }
|
73
|
+
|
74
|
+
result = []
|
75
|
+
prefixes.product(suffixes) { |pair| result << pair.flatten(1) }
|
76
|
+
suffixes = result
|
77
|
+
else
|
78
|
+
suffixes.each { |arr| arr.unshift str }
|
79
|
+
end
|
80
|
+
end
|
81
|
+
suffixes
|
82
|
+
end
|
83
|
+
|
84
|
+
def collapse(strs)
|
85
|
+
strs.map do |substrings|
|
86
|
+
substrings.slice_before(&:nil?).map(&:join).reject(&:empty?).uniq
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
def extract_strings(expression, alternation: false)
|
91
|
+
Expression.new(expression).extract_strings(alternation)
|
92
|
+
end
|
93
|
+
|
94
|
+
# @api private
|
95
|
+
class Expression
|
96
|
+
def initialize(exp)
|
97
|
+
@exp = exp
|
98
|
+
end
|
99
|
+
|
100
|
+
def extract_strings(process_alternatives)
|
101
|
+
strings = []
|
102
|
+
each do |exp|
|
103
|
+
next if exp.ignore?
|
104
|
+
|
105
|
+
next strings.push(nil) if exp.optional? && !process_alternatives
|
106
|
+
|
107
|
+
next strings.push(exp.alternative_strings) if exp.alternation? && process_alternatives
|
108
|
+
|
109
|
+
strings.concat(exp.strings(process_alternatives))
|
110
|
+
end
|
111
|
+
strings
|
112
|
+
end
|
113
|
+
|
114
|
+
protected
|
115
|
+
|
116
|
+
def alternation?
|
117
|
+
(type == :meta) && !terminal?
|
118
|
+
end
|
119
|
+
|
120
|
+
def optional?
|
121
|
+
min_repeat.zero?
|
122
|
+
end
|
123
|
+
|
124
|
+
def terminal?
|
125
|
+
@exp.terminal?
|
126
|
+
end
|
127
|
+
|
128
|
+
def strings(process_alternatives)
|
129
|
+
if indeterminate?
|
130
|
+
[nil]
|
131
|
+
elsif terminal?
|
132
|
+
terminal_strings
|
133
|
+
elsif optional?
|
134
|
+
optional_strings
|
135
|
+
else
|
136
|
+
repeated_strings(process_alternatives)
|
137
|
+
end
|
138
|
+
end
|
139
|
+
|
140
|
+
def terminal_strings
|
141
|
+
text = case @exp.type
|
142
|
+
when :literal then @exp.text
|
143
|
+
when :escape then @exp.char
|
144
|
+
else
|
145
|
+
return [nil]
|
146
|
+
end
|
147
|
+
|
148
|
+
optional? ? options_set(text) : repeat_set(text)
|
149
|
+
end
|
150
|
+
|
151
|
+
def optional_strings
|
152
|
+
options_set(extract_strings(true))
|
153
|
+
end
|
154
|
+
|
155
|
+
def repeated_strings(process_alternatives)
|
156
|
+
repeat_set extract_strings(process_alternatives)
|
157
|
+
end
|
158
|
+
|
159
|
+
def alternative_strings
|
160
|
+
alts = alternatives.map { |sub_exp| sub_exp.extract_strings(alternation: true) }
|
161
|
+
alts.all?(&:any?) ? Set.new(alts) : nil
|
162
|
+
end
|
163
|
+
|
164
|
+
def ignore?
|
165
|
+
[Regexp::Expression::Assertion::NegativeLookahead,
|
166
|
+
Regexp::Expression::Assertion::NegativeLookbehind].any? { |klass| @exp.is_a? klass }
|
167
|
+
end
|
168
|
+
|
169
|
+
private
|
170
|
+
|
171
|
+
def indeterminate?
|
172
|
+
%i[meta set].include?(type)
|
173
|
+
end
|
174
|
+
|
175
|
+
def min_repeat
|
176
|
+
@exp.repetitions.begin
|
177
|
+
end
|
178
|
+
|
179
|
+
def max_repeat
|
180
|
+
@exp.repetitions.end
|
181
|
+
end
|
182
|
+
|
183
|
+
def fixed_repeat?
|
184
|
+
min_repeat == max_repeat
|
185
|
+
end
|
186
|
+
|
187
|
+
def type
|
188
|
+
@exp.type
|
189
|
+
end
|
190
|
+
|
191
|
+
def repeat_set(str)
|
192
|
+
strs = Array(str * min_repeat)
|
193
|
+
strs.push(nil) unless fixed_repeat?
|
194
|
+
strs
|
195
|
+
end
|
196
|
+
|
197
|
+
def options_set(strs)
|
198
|
+
strs = [Set.new([[''], Array(strs)])]
|
199
|
+
strs.push(nil) unless max_repeat == 1
|
200
|
+
strs
|
201
|
+
end
|
202
|
+
|
203
|
+
def alternatives
|
204
|
+
@exp.alternatives.map { |exp| Expression.new(exp) }
|
205
|
+
end
|
206
|
+
|
207
|
+
def each
|
208
|
+
@exp.each { |exp| yield Expression.new(exp) }
|
209
|
+
end
|
210
|
+
end
|
211
|
+
private_constant :Expression
|
212
|
+
end
|
213
|
+
end
|
214
|
+
end
|
@@ -0,0 +1,155 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Capybara
|
4
|
+
class Selector < SimpleDelegator
|
5
|
+
class << self
|
6
|
+
def all
|
7
|
+
@definitions ||= {} # rubocop:disable Naming/MemoizedInstanceVariableName
|
8
|
+
end
|
9
|
+
|
10
|
+
def [](name)
|
11
|
+
all.fetch(name.to_sym) { |sel_type| raise ArgumentError, "Unknown selector type (:#{sel_type})" }
|
12
|
+
end
|
13
|
+
|
14
|
+
def add(name, **options, &block)
|
15
|
+
all[name.to_sym] = Definition.new(name.to_sym, **options, &block)
|
16
|
+
end
|
17
|
+
|
18
|
+
def update(name, &block)
|
19
|
+
self[name].instance_eval(&block)
|
20
|
+
end
|
21
|
+
|
22
|
+
def remove(name)
|
23
|
+
all.delete(name.to_sym)
|
24
|
+
end
|
25
|
+
|
26
|
+
def for(locator)
|
27
|
+
all.values.find { |sel| sel.match?(locator) }
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
attr_reader :errors
|
32
|
+
|
33
|
+
def initialize(definition, config:, format:)
|
34
|
+
definition = self.class[definition] unless definition.is_a? Definition
|
35
|
+
super(definition)
|
36
|
+
@definition = definition
|
37
|
+
@config = config
|
38
|
+
@format = format
|
39
|
+
@errors = []
|
40
|
+
end
|
41
|
+
|
42
|
+
def format
|
43
|
+
@format || @definition.default_format
|
44
|
+
end
|
45
|
+
alias_method :current_format, :format
|
46
|
+
|
47
|
+
def enable_aria_label
|
48
|
+
@config[:enable_aria_label]
|
49
|
+
end
|
50
|
+
|
51
|
+
def enable_aria_role
|
52
|
+
@config[:enable_aria_role]
|
53
|
+
end
|
54
|
+
|
55
|
+
def test_id
|
56
|
+
@config[:test_id]
|
57
|
+
end
|
58
|
+
|
59
|
+
def call(locator, **options)
|
60
|
+
if format
|
61
|
+
raise ArgumentError, "Selector #{@name} does not support #{format}" unless expressions.key?(format)
|
62
|
+
|
63
|
+
instance_exec(locator, **options, &expressions[format])
|
64
|
+
else
|
65
|
+
warn 'Selector has no format'
|
66
|
+
end
|
67
|
+
ensure
|
68
|
+
unless locator_valid?(locator)
|
69
|
+
warn "Locator #{locator.class}:#{locator.inspect} for selector #{name.inspect} must #{locator_description}. This will raise an error in a future version of Capybara."
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
def add_error(error_msg)
|
74
|
+
errors << error_msg
|
75
|
+
end
|
76
|
+
|
77
|
+
def expression_for(name, locator, config: @config, format: current_format, **options)
|
78
|
+
Selector.new(name, config: config, format: format).call(locator, **options)
|
79
|
+
end
|
80
|
+
|
81
|
+
# @api private
|
82
|
+
def with_filter_errors(errors)
|
83
|
+
old_errors = @errors
|
84
|
+
@errors = errors
|
85
|
+
yield
|
86
|
+
ensure
|
87
|
+
@errors = old_errors
|
88
|
+
end
|
89
|
+
|
90
|
+
# @api private
|
91
|
+
def builder(expr = nil)
|
92
|
+
case format
|
93
|
+
when :css
|
94
|
+
Capybara::Selector::CSSBuilder
|
95
|
+
when :xpath
|
96
|
+
Capybara::Selector::XPathBuilder
|
97
|
+
else
|
98
|
+
raise NotImplementedError, "No builder exists for selector of type #{default_format}"
|
99
|
+
end.new(expr)
|
100
|
+
end
|
101
|
+
|
102
|
+
private
|
103
|
+
|
104
|
+
def locator_description
|
105
|
+
locator_types.group_by { |lt| lt.is_a? Symbol }.map do |symbol, types_or_methods|
|
106
|
+
if symbol
|
107
|
+
"respond to #{types_or_methods.join(' or ')}"
|
108
|
+
else
|
109
|
+
"be an instance of #{types_or_methods.join(' or ')}"
|
110
|
+
end
|
111
|
+
end.join(' or ')
|
112
|
+
end
|
113
|
+
|
114
|
+
def locator_valid?(locator)
|
115
|
+
return true unless locator && locator_types
|
116
|
+
|
117
|
+
locator_types&.any? do |type_or_method|
|
118
|
+
type_or_method.is_a?(Symbol) ? locator.respond_to?(type_or_method) : type_or_method === locator # rubocop:disable Style/CaseEquality
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
122
|
+
def locate_field(xpath, locator, **_options)
|
123
|
+
return xpath if locator.nil?
|
124
|
+
|
125
|
+
locate_xpath = xpath # Need to save original xpath for the label wrap
|
126
|
+
locator = locator.to_s
|
127
|
+
attr_matchers = [XPath.attr(:id) == locator,
|
128
|
+
XPath.attr(:name) == locator,
|
129
|
+
XPath.attr(:placeholder) == locator,
|
130
|
+
XPath.attr(:id) == XPath.anywhere(:label)[XPath.string.n.is(locator)].attr(:for)].reduce(:|)
|
131
|
+
attr_matchers |= XPath.attr(:'aria-label').is(locator) if enable_aria_label
|
132
|
+
attr_matchers |= XPath.attr(test_id) == locator if test_id
|
133
|
+
|
134
|
+
locate_xpath = locate_xpath[attr_matchers]
|
135
|
+
locate_xpath + locate_label(locator).descendant(xpath)
|
136
|
+
end
|
137
|
+
|
138
|
+
def locate_label(locator)
|
139
|
+
XPath.descendant(:label)[XPath.string.n.is(locator)]
|
140
|
+
end
|
141
|
+
|
142
|
+
def find_by_attr(attribute, value)
|
143
|
+
finder_name = "find_by_#{attribute}_attr"
|
144
|
+
if respond_to?(finder_name, true)
|
145
|
+
send(finder_name, value)
|
146
|
+
else
|
147
|
+
value ? XPath.attr(attribute) == value : nil
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
151
|
+
def find_by_class_attr(classes)
|
152
|
+
Array(classes).map { |klass| XPath.attr(:class).contains_word(klass) }.reduce(:&)
|
153
|
+
end
|
154
|
+
end
|
155
|
+
end
|