capybara 3.0.0 → 3.36.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +1 -1
- data/History.md +777 -10
- data/License.txt +1 -1
- data/README.md +75 -58
- data/lib/capybara/config.rb +29 -10
- data/lib/capybara/cucumber.rb +1 -1
- data/lib/capybara/driver/base.rb +22 -4
- data/lib/capybara/driver/node.rb +34 -9
- data/lib/capybara/dsl.rb +14 -6
- data/lib/capybara/helpers.rb +52 -7
- data/lib/capybara/minitest/spec.rb +173 -84
- data/lib/capybara/minitest.rb +250 -144
- data/lib/capybara/node/actions.rb +248 -124
- data/lib/capybara/node/base.rb +34 -20
- data/lib/capybara/node/document.rb +14 -2
- data/lib/capybara/node/document_matchers.rb +13 -15
- data/lib/capybara/node/element.rb +339 -113
- data/lib/capybara/node/finders.rb +95 -82
- data/lib/capybara/node/matchers.rb +338 -157
- data/lib/capybara/node/simple.rb +54 -15
- data/lib/capybara/queries/active_element_query.rb +18 -0
- data/lib/capybara/queries/ancestor_query.rb +9 -10
- data/lib/capybara/queries/base_query.rb +25 -18
- data/lib/capybara/queries/current_path_query.rb +16 -6
- data/lib/capybara/queries/match_query.rb +11 -0
- data/lib/capybara/queries/selector_query.rb +600 -103
- data/lib/capybara/queries/sibling_query.rb +9 -7
- data/lib/capybara/queries/style_query.rb +45 -0
- data/lib/capybara/queries/text_query.rb +40 -22
- data/lib/capybara/queries/title_query.rb +2 -2
- data/lib/capybara/rack_test/browser.rb +47 -28
- data/lib/capybara/rack_test/driver.rb +12 -3
- data/lib/capybara/rack_test/errors.rb +6 -0
- data/lib/capybara/rack_test/form.rb +53 -50
- data/lib/capybara/rack_test/node.rb +114 -37
- data/lib/capybara/rails.rb +1 -1
- 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 +86 -52
- data/lib/capybara/rspec/features.rb +8 -10
- data/lib/capybara/rspec/matcher_proxies.rb +39 -18
- 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 +138 -316
- data/lib/capybara/rspec.rb +3 -2
- 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 +89 -12
- data/lib/capybara/selector/definition/button.rb +68 -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 +279 -0
- data/lib/capybara/selector/filter.rb +1 -0
- data/lib/capybara/selector/filter_set.rb +72 -27
- data/lib/capybara/selector/filters/base.rb +45 -2
- data/lib/capybara/selector/filters/expression_filter.rb +5 -6
- data/lib/capybara/selector/filters/locator_filter.rb +29 -0
- data/lib/capybara/selector/filters/node_filter.rb +18 -4
- data/lib/capybara/selector/regexp_disassembler.rb +214 -0
- data/lib/capybara/selector/selector.rb +85 -200
- data/lib/capybara/selector/xpath_extensions.rb +17 -0
- data/lib/capybara/selector.rb +226 -537
- 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 +296 -238
- 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 +436 -166
- 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 +69 -0
- data/lib/capybara/server/checker.rb +44 -0
- data/lib/capybara/server/middleware.rb +71 -0
- data/lib/capybara/server.rb +58 -67
- data/lib/capybara/session/config.rb +38 -6
- data/lib/capybara/session/matchers.rb +26 -19
- data/lib/capybara/session.rb +258 -190
- 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 +122 -8
- data/lib/capybara/spec/session/accept_alert_spec.rb +11 -11
- data/lib/capybara/spec/session/accept_confirm_spec.rb +3 -3
- data/lib/capybara/spec/session/accept_prompt_spec.rb +9 -10
- data/lib/capybara/spec/session/active_element_spec.rb +31 -0
- data/lib/capybara/spec/session/all_spec.rb +135 -42
- data/lib/capybara/spec/session/ancestor_spec.rb +24 -19
- data/lib/capybara/spec/session/assert_all_of_selectors_spec.rb +67 -38
- data/lib/capybara/spec/session/{assert_current_path.rb → assert_current_path_spec.rb} +20 -18
- 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.rb → assert_text_spec.rb} +62 -38
- data/lib/capybara/spec/session/{assert_title.rb → assert_title_spec.rb} +12 -12
- data/lib/capybara/spec/session/attach_file_spec.rb +120 -72
- data/lib/capybara/spec/session/body_spec.rb +11 -13
- data/lib/capybara/spec/session/check_spec.rb +111 -51
- data/lib/capybara/spec/session/choose_spec.rb +62 -30
- data/lib/capybara/spec/session/click_button_spec.rb +227 -161
- data/lib/capybara/spec/session/click_link_or_button_spec.rb +49 -30
- data/lib/capybara/spec/session/click_link_spec.rb +78 -55
- data/lib/capybara/spec/session/current_scope_spec.rb +7 -7
- data/lib/capybara/spec/session/current_url_spec.rb +44 -37
- data/lib/capybara/spec/session/dismiss_confirm_spec.rb +3 -3
- data/lib/capybara/spec/session/dismiss_prompt_spec.rb +2 -2
- data/lib/capybara/spec/session/element/{assert_match_selector.rb → assert_match_selector_spec.rb} +11 -9
- data/lib/capybara/spec/session/element/match_css_spec.rb +18 -10
- data/lib/capybara/spec/session/element/match_xpath_spec.rb +8 -6
- data/lib/capybara/spec/session/element/matches_selector_spec.rb +70 -56
- data/lib/capybara/spec/session/evaluate_async_script_spec.rb +7 -7
- data/lib/capybara/spec/session/evaluate_script_spec.rb +28 -8
- data/lib/capybara/spec/session/execute_script_spec.rb +8 -7
- data/lib/capybara/spec/session/fill_in_spec.rb +104 -44
- data/lib/capybara/spec/session/find_button_spec.rb +23 -23
- data/lib/capybara/spec/session/find_by_id_spec.rb +8 -8
- data/lib/capybara/spec/session/find_field_spec.rb +33 -31
- data/lib/capybara/spec/session/find_link_spec.rb +32 -14
- data/lib/capybara/spec/session/find_spec.rb +236 -141
- data/lib/capybara/spec/session/first_spec.rb +44 -43
- data/lib/capybara/spec/session/frame/frame_title_spec.rb +6 -6
- data/lib/capybara/spec/session/frame/frame_url_spec.rb +6 -6
- data/lib/capybara/spec/session/frame/switch_to_frame_spec.rb +32 -20
- data/lib/capybara/spec/session/frame/within_frame_spec.rb +44 -19
- data/lib/capybara/spec/session/go_back_spec.rb +1 -1
- data/lib/capybara/spec/session/go_forward_spec.rb +1 -1
- data/lib/capybara/spec/session/has_all_selectors_spec.rb +18 -18
- data/lib/capybara/spec/session/has_ancestor_spec.rb +46 -0
- data/lib/capybara/spec/session/has_any_selectors_spec.rb +29 -0
- data/lib/capybara/spec/session/has_button_spec.rb +92 -12
- data/lib/capybara/spec/session/has_css_spec.rb +271 -137
- data/lib/capybara/spec/session/has_current_path_spec.rb +48 -33
- data/lib/capybara/spec/session/has_field_spec.rb +137 -58
- data/lib/capybara/spec/session/has_link_spec.rb +30 -6
- data/lib/capybara/spec/session/has_none_selectors_spec.rb +26 -24
- data/lib/capybara/spec/session/has_select_spec.rb +75 -47
- data/lib/capybara/spec/session/has_selector_spec.rb +102 -69
- data/lib/capybara/spec/session/has_sibling_spec.rb +50 -0
- data/lib/capybara/spec/session/has_table_spec.rb +170 -4
- data/lib/capybara/spec/session/has_text_spec.rb +108 -52
- data/lib/capybara/spec/session/has_title_spec.rb +19 -14
- data/lib/capybara/spec/session/has_xpath_spec.rb +56 -38
- data/lib/capybara/spec/session/{headers.rb → headers_spec.rb} +1 -1
- data/lib/capybara/spec/session/html_spec.rb +13 -6
- data/lib/capybara/spec/session/matches_style_spec.rb +35 -0
- data/lib/capybara/spec/session/node_spec.rb +871 -122
- data/lib/capybara/spec/session/node_wrapper_spec.rb +15 -12
- data/lib/capybara/spec/session/refresh_spec.rb +9 -7
- data/lib/capybara/spec/session/reset_session_spec.rb +52 -37
- data/lib/capybara/spec/session/{response_code.rb → response_code_spec.rb} +1 -1
- data/lib/capybara/spec/session/save_and_open_page_spec.rb +2 -2
- data/lib/capybara/spec/session/save_and_open_screenshot_spec.rb +5 -4
- data/lib/capybara/spec/session/save_page_spec.rb +41 -38
- data/lib/capybara/spec/session/save_screenshot_spec.rb +13 -11
- 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 +102 -76
- data/lib/capybara/spec/session/selectors_spec.rb +51 -18
- data/lib/capybara/spec/session/sibling_spec.rb +9 -9
- data/lib/capybara/spec/session/text_spec.rb +26 -24
- data/lib/capybara/spec/session/title_spec.rb +8 -6
- data/lib/capybara/spec/session/uncheck_spec.rb +40 -21
- data/lib/capybara/spec/session/unselect_spec.rb +37 -37
- data/lib/capybara/spec/session/visit_spec.rb +59 -53
- data/lib/capybara/spec/session/window/become_closed_spec.rb +22 -19
- data/lib/capybara/spec/session/window/current_window_spec.rb +4 -3
- data/lib/capybara/spec/session/window/open_new_window_spec.rb +4 -3
- data/lib/capybara/spec/session/window/switch_to_window_spec.rb +25 -21
- data/lib/capybara/spec/session/window/window_opened_by_spec.rb +10 -5
- data/lib/capybara/spec/session/window/window_spec.rb +88 -54
- data/lib/capybara/spec/session/window/windows_spec.rb +10 -7
- data/lib/capybara/spec/session/window/within_window_spec.rb +17 -16
- data/lib/capybara/spec/session/within_spec.rb +69 -44
- data/lib/capybara/spec/spec_helper.rb +41 -53
- data/lib/capybara/spec/test_app.rb +79 -40
- data/lib/capybara/spec/views/animated.erb +49 -0
- data/lib/capybara/spec/views/form.erb +134 -42
- data/lib/capybara/spec/views/frame_child.erb +4 -3
- data/lib/capybara/spec/views/frame_one.erb +2 -1
- data/lib/capybara/spec/views/frame_parent.erb +1 -1
- data/lib/capybara/spec/views/frame_two.erb +1 -1
- data/lib/capybara/spec/views/initial_alert.erb +2 -1
- data/lib/capybara/spec/views/layout.erb +10 -0
- data/lib/capybara/spec/views/obscured.erb +47 -0
- data/lib/capybara/spec/views/offset.erb +33 -0
- data/lib/capybara/spec/views/path.erb +2 -2
- 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/react.erb +45 -0
- data/lib/capybara/spec/views/scroll.erb +21 -0
- data/lib/capybara/spec/views/spatial.erb +31 -0
- data/lib/capybara/spec/views/tables.erb +68 -1
- data/lib/capybara/spec/views/with_animation.erb +81 -0
- data/lib/capybara/spec/views/with_base_tag.erb +2 -2
- data/lib/capybara/spec/views/with_dragula.erb +24 -0
- data/lib/capybara/spec/views/with_fixed_header_footer.erb +2 -1
- data/lib/capybara/spec/views/with_hover.erb +3 -2
- data/lib/capybara/spec/views/with_hover1.erb +10 -0
- data/lib/capybara/spec/views/with_html.erb +43 -10
- data/lib/capybara/spec/views/with_html5_svg.erb +20 -0
- data/lib/capybara/spec/views/with_jquery_animation.erb +24 -0
- data/lib/capybara/spec/views/with_js.erb +30 -5
- data/lib/capybara/spec/views/with_jstree.erb +26 -0
- data/lib/capybara/spec/views/with_namespace.erb +21 -0
- data/lib/capybara/spec/views/with_scope_other.erb +6 -0
- data/lib/capybara/spec/views/with_slow_unload.erb +2 -1
- data/lib/capybara/spec/views/with_sortable_js.erb +21 -0
- data/lib/capybara/spec/views/with_unload_alert.erb +1 -0
- data/lib/capybara/spec/views/with_windows.erb +1 -1
- data/lib/capybara/spec/views/within_frames.erb +1 -1
- data/lib/capybara/version.rb +1 -1
- data/lib/capybara/window.rb +31 -25
- data/lib/capybara.rb +120 -100
- data/spec/basic_node_spec.rb +59 -34
- data/spec/capybara_spec.rb +54 -52
- data/spec/css_builder_spec.rb +101 -0
- data/spec/css_splitter_spec.rb +38 -0
- data/spec/dsl_spec.rb +80 -53
- data/spec/filter_set_spec.rb +24 -7
- data/spec/fixtures/certificate.pem +25 -0
- data/spec/fixtures/key.pem +27 -0
- data/spec/fixtures/selenium_driver_rspec_failure.rb +4 -4
- data/spec/fixtures/selenium_driver_rspec_success.rb +4 -4
- data/spec/minitest_spec.rb +38 -5
- data/spec/minitest_spec_spec.rb +88 -62
- data/spec/per_session_config_spec.rb +5 -5
- data/spec/rack_test_spec.rb +169 -115
- data/spec/regexp_dissassembler_spec.rb +250 -0
- data/spec/result_spec.rb +86 -33
- data/spec/rspec/features_spec.rb +26 -23
- data/spec/rspec/scenarios_spec.rb +8 -4
- data/spec/rspec/shared_spec_matchers.rb +393 -363
- data/spec/rspec/views_spec.rb +4 -3
- data/spec/rspec_matchers_spec.rb +10 -10
- data/spec/rspec_spec.rb +109 -85
- data/spec/sauce_spec_chrome.rb +43 -0
- data/spec/selector_spec.rb +391 -61
- data/spec/selenium_spec_chrome.rb +180 -41
- data/spec/selenium_spec_chrome_remote.rb +101 -0
- data/spec/selenium_spec_edge.rb +28 -8
- data/spec/selenium_spec_firefox.rb +211 -0
- data/spec/selenium_spec_firefox_remote.rb +80 -0
- data/spec/selenium_spec_ie.rb +127 -11
- data/spec/selenium_spec_safari.rb +156 -0
- data/spec/server_spec.rb +177 -78
- data/spec/session_spec.rb +52 -16
- data/spec/shared_selenium_node.rb +79 -0
- data/spec/shared_selenium_session.rb +455 -123
- data/spec/spec_helper.rb +91 -2
- data/spec/xpath_builder_spec.rb +93 -0
- metadata +343 -42
- data/.yard/templates_custom/default/class/html/selectors.erb +0 -38
- data/.yard/templates_custom/default/class/html/setup.rb +0 -17
- data/.yard/yard_extensions.rb +0 -78
- data/lib/capybara/rspec/compound.rb +0 -90
- data/lib/capybara/spec/session/assert_selector.rb +0 -149
- data/lib/capybara/spec/session/source_spec.rb +0 -0
- data/lib/capybara/spec/views/with_title.erb +0 -5
- data/spec/selenium_spec_marionette.rb +0 -143
@@ -0,0 +1,84 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'xpath'
|
4
|
+
|
5
|
+
module Capybara
|
6
|
+
class Selector
|
7
|
+
# @api private
|
8
|
+
class CSSBuilder
|
9
|
+
def initialize(expression)
|
10
|
+
@expression = expression || ''
|
11
|
+
end
|
12
|
+
|
13
|
+
attr_reader :expression
|
14
|
+
|
15
|
+
def add_attribute_conditions(**attributes)
|
16
|
+
@expression = attributes.inject(expression) do |css, (name, value)|
|
17
|
+
conditions = if name == :class
|
18
|
+
class_conditions(value)
|
19
|
+
elsif value.is_a? Regexp
|
20
|
+
regexp_conditions(name, value)
|
21
|
+
else
|
22
|
+
[attribute_conditions(name => value)]
|
23
|
+
end
|
24
|
+
|
25
|
+
::Capybara::Selector::CSS.split(css).map do |sel|
|
26
|
+
next sel if conditions.empty?
|
27
|
+
|
28
|
+
conditions.map { |cond| sel + cond }.join(', ')
|
29
|
+
end.join(', ')
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
private
|
34
|
+
|
35
|
+
def regexp_conditions(name, value)
|
36
|
+
Selector::RegexpDisassembler.new(value).alternated_substrings.map do |strs|
|
37
|
+
strs.map do |str|
|
38
|
+
"[#{name}*='#{str}'#{' i' if value.casefold?}]"
|
39
|
+
end.join
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
def attribute_conditions(attributes)
|
44
|
+
attributes.map do |attribute, value|
|
45
|
+
case value
|
46
|
+
when XPath::Expression
|
47
|
+
raise ArgumentError, "XPath expressions are not supported for the :#{attribute} filter with CSS based selectors"
|
48
|
+
when Regexp
|
49
|
+
Selector::RegexpDisassembler.new(value).substrings.map do |str|
|
50
|
+
"[#{attribute}*='#{str}'#{' i' if value.casefold?}]"
|
51
|
+
end.join
|
52
|
+
when true
|
53
|
+
"[#{attribute}]"
|
54
|
+
when false
|
55
|
+
':not([attribute])'
|
56
|
+
else
|
57
|
+
if attribute == :id
|
58
|
+
"##{::Capybara::Selector::CSS.escape(value)}"
|
59
|
+
else
|
60
|
+
"[#{attribute}='#{value}']"
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end.join
|
64
|
+
end
|
65
|
+
|
66
|
+
def class_conditions(classes)
|
67
|
+
case classes
|
68
|
+
when XPath::Expression
|
69
|
+
raise ArgumentError, 'XPath expressions are not supported for the :class filter with CSS based selectors'
|
70
|
+
when Regexp
|
71
|
+
Selector::RegexpDisassembler.new(classes).alternated_substrings.map do |strs|
|
72
|
+
strs.map do |str|
|
73
|
+
"[class*='#{str}'#{' i' if classes.casefold?}]"
|
74
|
+
end.join
|
75
|
+
end
|
76
|
+
else
|
77
|
+
cls = Array(classes).reject { |c| c.is_a? Regexp }.group_by { |cl| cl.match?(/^!(?!!!)/) }
|
78
|
+
[(cls[false].to_a.map { |cl| ".#{Capybara::Selector::CSS.escape(cl.sub(/^!!/, ''))}" } +
|
79
|
+
cls[true].to_a.map { |cl| ":not(.#{Capybara::Selector::CSS.escape(cl.slice(1..))})" }).join]
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
@@ -0,0 +1,71 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'xpath'
|
4
|
+
|
5
|
+
module Capybara
|
6
|
+
class Selector
|
7
|
+
# @api private
|
8
|
+
class XPathBuilder
|
9
|
+
def initialize(expression)
|
10
|
+
@expression = expression || ''
|
11
|
+
end
|
12
|
+
|
13
|
+
attr_reader :expression
|
14
|
+
|
15
|
+
def add_attribute_conditions(**conditions)
|
16
|
+
@expression = conditions.inject(expression) do |xp, (name, value)|
|
17
|
+
conditions = name == :class ? class_conditions(value) : attribute_conditions(name => value)
|
18
|
+
return xp if conditions.nil?
|
19
|
+
|
20
|
+
if xp.is_a? XPath::Expression
|
21
|
+
xp[conditions]
|
22
|
+
else
|
23
|
+
"(#{xp})[#{conditions}]"
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
private
|
29
|
+
|
30
|
+
def attribute_conditions(attributes)
|
31
|
+
attributes.map do |attribute, value|
|
32
|
+
case value
|
33
|
+
when XPath::Expression
|
34
|
+
XPath.attr(attribute)[value]
|
35
|
+
when Regexp
|
36
|
+
XPath.attr(attribute)[regexp_to_xpath_conditions(value)]
|
37
|
+
when true
|
38
|
+
XPath.attr(attribute)
|
39
|
+
when false, nil
|
40
|
+
!XPath.attr(attribute)
|
41
|
+
else
|
42
|
+
XPath.attr(attribute) == value.to_s
|
43
|
+
end
|
44
|
+
end.reduce(:&)
|
45
|
+
end
|
46
|
+
|
47
|
+
def class_conditions(classes)
|
48
|
+
case classes
|
49
|
+
when XPath::Expression, Regexp
|
50
|
+
attribute_conditions(class: classes)
|
51
|
+
else
|
52
|
+
Array(classes).reject { |c| c.is_a? Regexp }.map do |klass|
|
53
|
+
if klass.match?(/^!(?!!!)/)
|
54
|
+
!XPath.attr(:class).contains_word(klass.slice(1..))
|
55
|
+
else
|
56
|
+
XPath.attr(:class).contains_word(klass.sub(/^!!/, ''))
|
57
|
+
end
|
58
|
+
end.reduce(:&)
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
def regexp_to_xpath_conditions(regexp)
|
63
|
+
condition = XPath.current
|
64
|
+
condition = condition.uppercase if regexp.casefold?
|
65
|
+
Selector::RegexpDisassembler.new(regexp).alternated_substrings.map do |strs|
|
66
|
+
strs.map { |str| condition.contains(str) }.reduce(:&)
|
67
|
+
end.reduce(:|)
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
@@ -1,25 +1,102 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'capybara/selector/selector'
|
4
|
+
|
1
5
|
module Capybara
|
2
6
|
class Selector
|
3
7
|
class CSS
|
4
8
|
def self.escape(str)
|
5
9
|
value = str.dup
|
6
|
-
out =
|
7
|
-
out << value.slice!(0...1) if value
|
8
|
-
out << (value[0]
|
9
|
-
out << value.gsub(/[^a-zA-Z0-9_-]/) { |
|
10
|
+
out = +''
|
11
|
+
out << value.slice!(0...1) if value.match?(/^[-_]/)
|
12
|
+
out << (value[0].match?(NMSTART) ? value.slice!(0...1) : escape_char(value.slice!(0...1)))
|
13
|
+
out << value.gsub(/[^a-zA-Z0-9_-]/) { |char| escape_char char }
|
10
14
|
out
|
11
15
|
end
|
12
16
|
|
13
|
-
def self.escape_char(
|
14
|
-
|
17
|
+
def self.escape_char(char)
|
18
|
+
char.match?(%r{[ -/:-~]}) ? "\\#{char}" : format('\\%06<hex>x', hex: char.ord)
|
19
|
+
end
|
20
|
+
|
21
|
+
def self.split(css)
|
22
|
+
Splitter.new.split(css)
|
15
23
|
end
|
16
24
|
|
17
|
-
S = '\u{80}-\u{D7FF}\u{E000}-\u{FFFD}\u{10000}-\u{10FFFF}'
|
18
|
-
H = /[0-9a-fA-F]
|
19
|
-
UNICODE = /\\#{H}{1,6}[ \t\r\n\f]
|
20
|
-
NONASCII = /[#{S}]
|
21
|
-
ESCAPE = /#{UNICODE}|\\[ -~#{S}]
|
22
|
-
NMSTART
|
25
|
+
S = '\u{80}-\u{D7FF}\u{E000}-\u{FFFD}\u{10000}-\u{10FFFF}'
|
26
|
+
H = /[0-9a-fA-F]/.freeze
|
27
|
+
UNICODE = /\\#{H}{1,6}[ \t\r\n\f]?/.freeze
|
28
|
+
NONASCII = /[#{S}]/.freeze
|
29
|
+
ESCAPE = /#{UNICODE}|\\[ -~#{S}]/.freeze
|
30
|
+
NMSTART = /[_a-zA-Z]|#{NONASCII}|#{ESCAPE}/.freeze
|
31
|
+
|
32
|
+
class Splitter
|
33
|
+
def split(css)
|
34
|
+
selectors = []
|
35
|
+
StringIO.open(css.to_s) do |str|
|
36
|
+
selector = +''
|
37
|
+
while (char = str.getc)
|
38
|
+
case char
|
39
|
+
when '['
|
40
|
+
selector << parse_square(str)
|
41
|
+
when '('
|
42
|
+
selector << parse_paren(str)
|
43
|
+
when '"', "'"
|
44
|
+
selector << parse_string(char, str)
|
45
|
+
when '\\'
|
46
|
+
selector << (char + str.getc)
|
47
|
+
when ','
|
48
|
+
selectors << selector.strip
|
49
|
+
selector.clear
|
50
|
+
else
|
51
|
+
selector << char
|
52
|
+
end
|
53
|
+
end
|
54
|
+
selectors << selector.strip
|
55
|
+
end
|
56
|
+
selectors
|
57
|
+
end
|
58
|
+
|
59
|
+
private
|
60
|
+
|
61
|
+
def parse_square(strio)
|
62
|
+
parse_block('[', ']', strio)
|
63
|
+
end
|
64
|
+
|
65
|
+
def parse_paren(strio)
|
66
|
+
parse_block('(', ')', strio)
|
67
|
+
end
|
68
|
+
|
69
|
+
def parse_block(start, final, strio)
|
70
|
+
block = start
|
71
|
+
while (char = strio.getc)
|
72
|
+
case char
|
73
|
+
when final
|
74
|
+
return block + char
|
75
|
+
when '\\'
|
76
|
+
block += char + strio.getc
|
77
|
+
when '"', "'"
|
78
|
+
block += parse_string(char, strio)
|
79
|
+
else
|
80
|
+
block += char
|
81
|
+
end
|
82
|
+
end
|
83
|
+
raise ArgumentError, "Invalid CSS Selector - Block end '#{final}' not found"
|
84
|
+
end
|
85
|
+
|
86
|
+
def parse_string(quote, strio)
|
87
|
+
string = quote
|
88
|
+
while (char = strio.getc)
|
89
|
+
string += char
|
90
|
+
case char
|
91
|
+
when quote
|
92
|
+
return string
|
93
|
+
when '\\'
|
94
|
+
string += strio.getc
|
95
|
+
end
|
96
|
+
end
|
97
|
+
raise ArgumentError, 'Invalid CSS Selector - string end not found'
|
98
|
+
end
|
99
|
+
end
|
23
100
|
end
|
24
101
|
end
|
25
102
|
end
|
@@ -0,0 +1,68 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Capybara.add_selector(:button, locator_type: [String, Symbol]) do
|
4
|
+
xpath(:value, :title, :type, :name) do |locator, **options|
|
5
|
+
input_btn_xpath = XPath.descendant(:input)[XPath.attr(:type).one_of('submit', 'reset', 'image', 'button')]
|
6
|
+
btn_xpath = XPath.descendant(:button)
|
7
|
+
aria_btn_xpath = XPath.descendant[XPath.attr(:role).equals('button')]
|
8
|
+
image_btn_xpath = XPath.descendant(:input)[XPath.attr(:type) == 'image']
|
9
|
+
|
10
|
+
unless locator.nil?
|
11
|
+
locator = locator.to_s
|
12
|
+
locator_matchers = combine_locators(locator, config: self)
|
13
|
+
btn_matchers = locator_matchers |
|
14
|
+
XPath.string.n.is(locator) |
|
15
|
+
XPath.descendant(:img)[XPath.attr(:alt).is(locator)]
|
16
|
+
|
17
|
+
label_contains_xpath = locate_label(locator).descendant[labellable_elements]
|
18
|
+
input_btn_xpath = input_btn_xpath[locator_matchers]
|
19
|
+
btn_xpath = btn_xpath[btn_matchers]
|
20
|
+
aria_btn_xpath = aria_btn_xpath[btn_matchers]
|
21
|
+
|
22
|
+
alt_matches = XPath.attr(:alt).is(locator)
|
23
|
+
alt_matches |= XPath.attr(:'aria-label').is(locator) if enable_aria_label
|
24
|
+
image_btn_xpath = image_btn_xpath[alt_matches]
|
25
|
+
end
|
26
|
+
|
27
|
+
btn_xpaths = [input_btn_xpath, btn_xpath, image_btn_xpath, label_contains_xpath].compact
|
28
|
+
btn_xpaths << aria_btn_xpath if enable_aria_role
|
29
|
+
|
30
|
+
%i[value title type].inject(btn_xpaths.inject(&:union)) do |memo, ef|
|
31
|
+
memo.where(find_by_attr(ef, options[ef]))
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
node_filter(:disabled, :boolean, default: false, skip_if: :all) { |node, value| !(value ^ node.disabled?) }
|
36
|
+
expression_filter(:disabled) { |xpath, val| val ? xpath : xpath[~XPath.attr(:disabled)] }
|
37
|
+
|
38
|
+
node_filter(:name) { |node, value| !value.is_a?(Regexp) || value.match?(node[:name]) }
|
39
|
+
expression_filter(:name) do |xpath, val|
|
40
|
+
builder(xpath).add_attribute_conditions(name: val)
|
41
|
+
end
|
42
|
+
|
43
|
+
describe_expression_filters do |disabled: nil, **options|
|
44
|
+
desc = +''
|
45
|
+
desc << ' that is not disabled' if disabled == false
|
46
|
+
desc << describe_all_expression_filters(**options)
|
47
|
+
end
|
48
|
+
|
49
|
+
describe_node_filters do |disabled: nil, **|
|
50
|
+
' that is disabled' if disabled == true
|
51
|
+
end
|
52
|
+
|
53
|
+
def combine_locators(locator, config:)
|
54
|
+
[
|
55
|
+
XPath.attr(:id).equals(locator),
|
56
|
+
XPath.attr(:name).equals(locator),
|
57
|
+
XPath.attr(:value).is(locator),
|
58
|
+
XPath.attr(:title).is(locator),
|
59
|
+
(XPath.attr(:id) == XPath.anywhere(:label)[XPath.string.n.is(locator)].attr(:for)),
|
60
|
+
(XPath.attr(:'aria-label').is(locator) if config.enable_aria_label),
|
61
|
+
(XPath.attr(config.test_id) == locator if config.test_id)
|
62
|
+
].compact.inject(&:|)
|
63
|
+
end
|
64
|
+
|
65
|
+
def labellable_elements
|
66
|
+
(XPath.self(:input) & XPath.attr(:type).one_of('submit', 'reset', 'image', 'button')) | XPath.self(:button)
|
67
|
+
end
|
68
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Capybara.add_selector(:checkbox, locator_type: [String, Symbol]) do
|
4
|
+
xpath do |locator, allow_self: nil, **options|
|
5
|
+
xpath = XPath.axis(allow_self ? :'descendant-or-self' : :descendant, :input)[
|
6
|
+
XPath.attr(:type) == 'checkbox'
|
7
|
+
]
|
8
|
+
locate_field(xpath, locator, **options)
|
9
|
+
end
|
10
|
+
|
11
|
+
filter_set(:_field, %i[checked unchecked disabled name])
|
12
|
+
|
13
|
+
node_filter(%i[option with]) do |node, value|
|
14
|
+
val = node.value
|
15
|
+
(value.is_a?(Regexp) ? value.match?(val) : val == value.to_s).tap do |res|
|
16
|
+
add_error("Expected value to be #{value.inspect} but it was #{val.inspect}") unless res
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
describe_node_filters do |option: nil, with: nil, **|
|
21
|
+
desc = +''
|
22
|
+
desc << " with value #{option.inspect}" if option
|
23
|
+
desc << " with value #{with.inspect}" if with
|
24
|
+
desc
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Capybara.add_selector(:css, locator_type: [String, Symbol], raw_locator: true) do
|
4
|
+
css do |css|
|
5
|
+
if css.is_a? Symbol
|
6
|
+
Capybara::Helpers.warn "DEPRECATED: Passing a symbol (#{css.inspect}) as the CSS locator is deprecated - please pass a string instead : #{Capybara::Helpers.filter_backtrace(caller)}"
|
7
|
+
end
|
8
|
+
css
|
9
|
+
end
|
10
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Capybara.add_selector(:datalist_input, locator_type: [String, Symbol]) do
|
4
|
+
label 'input box with datalist completion'
|
5
|
+
|
6
|
+
xpath do |locator, **options|
|
7
|
+
xpath = XPath.descendant(:input)[XPath.attr(:list)]
|
8
|
+
locate_field(xpath, locator, **options)
|
9
|
+
end
|
10
|
+
|
11
|
+
filter_set(:_field, %i[disabled name placeholder])
|
12
|
+
|
13
|
+
node_filter(:options) do |node, options|
|
14
|
+
actual = node.find("//datalist[@id=#{node[:list]}]", visible: :all).all(:datalist_option, wait: false).map(&:value)
|
15
|
+
(options.sort == actual.sort).tap do |res|
|
16
|
+
add_error("Expected #{options.inspect} options found #{actual.inspect}") unless res
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
expression_filter(:with_options) do |expr, options|
|
21
|
+
options.inject(expr) do |xpath, option|
|
22
|
+
xpath.where(XPath.attr(:list) == XPath.anywhere(:datalist)[expression_for(:datalist_option, option)].attr(:id))
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
describe_expression_filters do |with_options: nil, **|
|
27
|
+
desc = +''
|
28
|
+
desc << " with at least options #{with_options.inspect}" if with_options
|
29
|
+
desc
|
30
|
+
end
|
31
|
+
|
32
|
+
describe_node_filters do |options: nil, **|
|
33
|
+
" with options #{options.inspect}" if options
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Capybara.add_selector(:datalist_option, locator_type: [String, Symbol]) do
|
4
|
+
label 'datalist option'
|
5
|
+
visible(:all)
|
6
|
+
|
7
|
+
xpath do |locator|
|
8
|
+
xpath = XPath.descendant(:option)
|
9
|
+
xpath = xpath[XPath.string.n.is(locator.to_s) | (XPath.attr(:value) == locator.to_s)] unless locator.nil?
|
10
|
+
xpath
|
11
|
+
end
|
12
|
+
|
13
|
+
node_filter(:disabled, :boolean) { |node, value| !(value ^ node.disabled?) }
|
14
|
+
expression_filter(:disabled) { |xpath, val| val ? xpath : xpath[~XPath.attr(:disabled)] }
|
15
|
+
|
16
|
+
describe_expression_filters do |disabled: nil, **options|
|
17
|
+
desc = +''
|
18
|
+
desc << ' that is not disabled' if disabled == false
|
19
|
+
desc << describe_all_expression_filters(**options)
|
20
|
+
end
|
21
|
+
|
22
|
+
describe_node_filters do |**options|
|
23
|
+
' that is disabled' if options[:disabled]
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Capybara.add_selector(:element, locator_type: [String, Symbol]) do
|
4
|
+
xpath do |locator, **|
|
5
|
+
XPath.descendant.where(locator ? XPath.local_name == locator.to_s : nil)
|
6
|
+
end
|
7
|
+
|
8
|
+
expression_filter(:attributes, matcher: /.+/) do |xpath, name, val|
|
9
|
+
builder(xpath).add_attribute_conditions(name => val)
|
10
|
+
end
|
11
|
+
|
12
|
+
node_filter(:attributes, matcher: /.+/) do |node, name, val|
|
13
|
+
next true unless val.is_a?(Regexp)
|
14
|
+
|
15
|
+
(val.match? node[name]).tap do |res|
|
16
|
+
add_error("Expected #{name} to match #{val.inspect} but it was #{node[name]}") unless res
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
describe_expression_filters do |**options|
|
21
|
+
boolean_values = [true, false]
|
22
|
+
booleans, values = options.partition { |_k, v| boolean_values.include? v }.map(&:to_h)
|
23
|
+
desc = describe_all_expression_filters(**values)
|
24
|
+
desc + booleans.map do |k, v|
|
25
|
+
v ? " with #{k} attribute" : "without #{k} attribute"
|
26
|
+
end.join
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Capybara.add_selector(:field, locator_type: [String, Symbol]) do
|
4
|
+
visible { |options| :hidden if options[:type].to_s == 'hidden' }
|
5
|
+
|
6
|
+
xpath do |locator, **options|
|
7
|
+
invalid_types = %w[submit image]
|
8
|
+
invalid_types << 'hidden' unless options[:type].to_s == 'hidden'
|
9
|
+
xpath = XPath.descendant(:input, :textarea, :select)[!XPath.attr(:type).one_of(*invalid_types)]
|
10
|
+
locate_field(xpath, locator, **options)
|
11
|
+
end
|
12
|
+
|
13
|
+
expression_filter(:type) do |expr, type|
|
14
|
+
type = type.to_s
|
15
|
+
if %w[textarea select].include?(type)
|
16
|
+
expr.self(type.to_sym)
|
17
|
+
else
|
18
|
+
expr[XPath.attr(:type) == type]
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
filter_set(:_field) # checked/unchecked/disabled/multiple/name/placeholder
|
23
|
+
|
24
|
+
node_filter(:readonly, :boolean) { |node, value| !(value ^ node.readonly?) }
|
25
|
+
|
26
|
+
node_filter(:with) do |node, with|
|
27
|
+
val = node.value
|
28
|
+
(with.is_a?(Regexp) ? with.match?(val) : val == with.to_s).tap do |res|
|
29
|
+
add_error("Expected value to be #{with.inspect} but was #{val.inspect}") unless res
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
describe_expression_filters do |type: nil, **|
|
34
|
+
" of type #{type.inspect}" if type
|
35
|
+
end
|
36
|
+
|
37
|
+
describe_node_filters do |**options|
|
38
|
+
" with value #{options[:with].to_s.inspect}" if options.key?(:with)
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Capybara.add_selector(:fieldset, locator_type: [String, Symbol]) do
|
4
|
+
xpath do |locator, legend: nil, **|
|
5
|
+
locator_matchers = (XPath.attr(:id) == locator.to_s) | XPath.child(:legend)[XPath.string.n.is(locator.to_s)]
|
6
|
+
locator_matchers |= XPath.attr(test_id) == locator.to_s if test_id
|
7
|
+
xpath = XPath.descendant(:fieldset)[locator && locator_matchers]
|
8
|
+
xpath = xpath[XPath.child(:legend)[XPath.string.n.is(legend)]] if legend
|
9
|
+
xpath
|
10
|
+
end
|
11
|
+
|
12
|
+
node_filter(:disabled, :boolean) { |node, value| !(value ^ node.disabled?) }
|
13
|
+
expression_filter(:disabled) { |xpath, val| val ? xpath : xpath[~XPath.attr(:disabled)] }
|
14
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Capybara.add_selector(:file_field, locator_type: [String, Symbol]) do
|
4
|
+
label 'file field'
|
5
|
+
xpath do |locator, allow_self: nil, **options|
|
6
|
+
xpath = XPath.axis(allow_self ? :'descendant-or-self' : :descendant, :input)[
|
7
|
+
XPath.attr(:type) == 'file'
|
8
|
+
]
|
9
|
+
locate_field(xpath, locator, **options)
|
10
|
+
end
|
11
|
+
|
12
|
+
filter_set(:_field, %i[disabled multiple name])
|
13
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Capybara.add_selector(:fillable_field, locator_type: [String, Symbol]) do
|
4
|
+
label 'field'
|
5
|
+
xpath do |locator, allow_self: nil, **options|
|
6
|
+
xpath = XPath.axis(allow_self ? :'descendant-or-self' : :descendant, :input, :textarea)[
|
7
|
+
!XPath.attr(:type).one_of('submit', 'image', 'radio', 'checkbox', 'hidden', 'file')
|
8
|
+
]
|
9
|
+
locate_field(xpath, locator, **options)
|
10
|
+
end
|
11
|
+
|
12
|
+
expression_filter(:type) do |expr, type|
|
13
|
+
type = type.to_s
|
14
|
+
if type == 'textarea'
|
15
|
+
expr.self(type.to_sym)
|
16
|
+
else
|
17
|
+
expr[XPath.attr(:type) == type]
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
filter_set(:_field, %i[disabled multiple name placeholder valid validation_message])
|
22
|
+
|
23
|
+
node_filter(:with) do |node, with|
|
24
|
+
val = node.value
|
25
|
+
(with.is_a?(Regexp) ? with.match?(val) : val == with.to_s).tap do |res|
|
26
|
+
add_error("Expected value to be #{with.inspect} but was #{val.inspect}") unless res
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe_node_filters do |**options|
|
31
|
+
" with value #{options[:with].to_s.inspect}" if options.key?(:with)
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Capybara.add_selector(:frame, locator_type: [String, Symbol]) do
|
4
|
+
xpath do |locator, name: nil, **|
|
5
|
+
xpath = XPath.descendant(:iframe).union(XPath.descendant(:frame))
|
6
|
+
unless locator.nil?
|
7
|
+
locator_matchers = (XPath.attr(:id) == locator.to_s) | (XPath.attr(:name) == locator.to_s)
|
8
|
+
locator_matchers |= XPath.attr(test_id) == locator if test_id
|
9
|
+
xpath = xpath[locator_matchers]
|
10
|
+
end
|
11
|
+
xpath[find_by_attr(:name, name)]
|
12
|
+
end
|
13
|
+
|
14
|
+
describe_expression_filters do |name: nil, **|
|
15
|
+
" with name #{name}" if name
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,62 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Capybara.add_selector(:label, locator_type: [String, Symbol]) do
|
4
|
+
label 'label'
|
5
|
+
xpath(:for) do |locator, **options|
|
6
|
+
xpath = XPath.descendant(:label)
|
7
|
+
unless locator.nil?
|
8
|
+
locator_matchers = XPath.string.n.is(locator.to_s) | (XPath.attr(:id) == locator.to_s)
|
9
|
+
locator_matchers |= XPath.attr(test_id) == locator if test_id
|
10
|
+
xpath = xpath[locator_matchers]
|
11
|
+
end
|
12
|
+
if options.key?(:for)
|
13
|
+
for_option = options[:for]
|
14
|
+
for_option = for_option[:id] if for_option.is_a?(Capybara::Node::Element)
|
15
|
+
if for_option && (for_option != '')
|
16
|
+
with_attr = builder(XPath.self).add_attribute_conditions(for: for_option)
|
17
|
+
wrapped = !XPath.attr(:for) &
|
18
|
+
builder(XPath.self.descendant(*labelable_elements)).add_attribute_conditions(id: for_option)
|
19
|
+
xpath = xpath[with_attr | wrapped]
|
20
|
+
end
|
21
|
+
end
|
22
|
+
xpath
|
23
|
+
end
|
24
|
+
|
25
|
+
node_filter(:for) do |node, field_or_value|
|
26
|
+
case field_or_value
|
27
|
+
when Capybara::Node::Element
|
28
|
+
if (for_val = node[:for])
|
29
|
+
field_or_value[:id] == for_val
|
30
|
+
else
|
31
|
+
field_or_value.find_xpath('./ancestor::label[1]').include? node.base
|
32
|
+
end
|
33
|
+
when Regexp
|
34
|
+
if (for_val = node[:for])
|
35
|
+
field_or_value.match? for_val
|
36
|
+
else
|
37
|
+
node.find_xpath(XPath.descendant(*labelable_elements).to_s)
|
38
|
+
.any? { |n| field_or_value.match? n[:id] }
|
39
|
+
end
|
40
|
+
else
|
41
|
+
# Non element/regexp values were handled through the expression filter
|
42
|
+
true
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe_expression_filters do |**options|
|
47
|
+
next unless options.key?(:for) && !options[:for].is_a?(Capybara::Node::Element)
|
48
|
+
|
49
|
+
if options[:for].is_a? Regexp
|
50
|
+
" for element with id matching #{options[:for].inspect}"
|
51
|
+
else
|
52
|
+
" for element with id of \"#{options[:for]}\""
|
53
|
+
end
|
54
|
+
end
|
55
|
+
describe_node_filters do |**options|
|
56
|
+
" for element #{options[:for]}" if options[:for].is_a?(Capybara::Node::Element)
|
57
|
+
end
|
58
|
+
|
59
|
+
def labelable_elements
|
60
|
+
%i[button input keygen meter output progress select textarea]
|
61
|
+
end
|
62
|
+
end
|