capybara 3.13.2 → 3.40.0
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 +4 -4
- data/.yardopts +1 -0
- data/History.md +587 -16
- data/README.md +240 -90
- data/lib/capybara/config.rb +24 -11
- data/lib/capybara/cucumber.rb +1 -1
- data/lib/capybara/driver/base.rb +8 -0
- data/lib/capybara/driver/node.rb +20 -4
- data/lib/capybara/dsl.rb +5 -3
- data/lib/capybara/helpers.rb +25 -4
- data/lib/capybara/minitest/spec.rb +174 -90
- data/lib/capybara/minitest.rb +256 -142
- data/lib/capybara/node/actions.rb +123 -77
- data/lib/capybara/node/base.rb +20 -12
- data/lib/capybara/node/document.rb +2 -2
- data/lib/capybara/node/document_matchers.rb +3 -3
- data/lib/capybara/node/element.rb +223 -117
- data/lib/capybara/node/finders.rb +81 -71
- data/lib/capybara/node/matchers.rb +271 -134
- data/lib/capybara/node/simple.rb +18 -5
- data/lib/capybara/node/whitespace_normalizer.rb +81 -0
- data/lib/capybara/queries/active_element_query.rb +18 -0
- data/lib/capybara/queries/ancestor_query.rb +8 -9
- data/lib/capybara/queries/base_query.rb +3 -2
- data/lib/capybara/queries/current_path_query.rb +15 -5
- data/lib/capybara/queries/selector_query.rb +364 -54
- data/lib/capybara/queries/sibling_query.rb +8 -6
- data/lib/capybara/queries/style_query.rb +2 -2
- data/lib/capybara/queries/text_query.rb +13 -1
- data/lib/capybara/queries/title_query.rb +1 -1
- data/lib/capybara/rack_test/browser.rb +76 -11
- data/lib/capybara/rack_test/driver.rb +10 -5
- data/lib/capybara/rack_test/errors.rb +6 -0
- data/lib/capybara/rack_test/form.rb +31 -9
- data/lib/capybara/rack_test/node.rb +74 -23
- data/lib/capybara/registration_container.rb +41 -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 +66 -0
- data/lib/capybara/result.rb +44 -20
- data/lib/capybara/rspec/matcher_proxies.rb +13 -11
- data/lib/capybara/rspec/matchers/base.rb +31 -16
- data/lib/capybara/rspec/matchers/compound.rb +1 -1
- 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 +2 -2
- data/lib/capybara/rspec/matchers/have_selector.rb +21 -21
- data/lib/capybara/rspec/matchers/have_sibling.rb +27 -0
- data/lib/capybara/rspec/matchers/have_text.rb +4 -4
- data/lib/capybara/rspec/matchers/have_title.rb +2 -2
- data/lib/capybara/rspec/matchers/match_selector.rb +3 -3
- data/lib/capybara/rspec/matchers/match_style.rb +7 -2
- data/lib/capybara/rspec/matchers/spatial_sugar.rb +39 -0
- data/lib/capybara/rspec/matchers.rb +111 -68
- data/lib/capybara/rspec.rb +2 -0
- data/lib/capybara/selector/builders/css_builder.rb +11 -7
- data/lib/capybara/selector/builders/xpath_builder.rb +5 -3
- data/lib/capybara/selector/css.rb +11 -9
- 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 +55 -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 +280 -0
- data/lib/capybara/selector/filter_set.rb +19 -18
- data/lib/capybara/selector/filters/base.rb +11 -2
- data/lib/capybara/selector/filters/locator_filter.rb +13 -3
- data/lib/capybara/selector/regexp_disassembler.rb +11 -7
- data/lib/capybara/selector/selector.rb +50 -440
- data/lib/capybara/selector/xpath_extensions.rb +17 -0
- data/lib/capybara/selector.rb +473 -482
- 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 +174 -62
- data/lib/capybara/selenium/driver_specializations/chrome_driver.rb +74 -18
- data/lib/capybara/selenium/driver_specializations/edge_driver.rb +128 -0
- data/lib/capybara/selenium/driver_specializations/firefox_driver.rb +37 -3
- data/lib/capybara/selenium/driver_specializations/internet_explorer_driver.rb +14 -1
- 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 +68 -45
- data/lib/capybara/selenium/extensions/html5_drag.rb +192 -22
- data/lib/capybara/selenium/extensions/modifier_keys_stack.rb +28 -0
- data/lib/capybara/selenium/extensions/scroll.rb +8 -10
- data/lib/capybara/selenium/node.rb +268 -72
- data/lib/capybara/selenium/nodes/chrome_node.rb +105 -9
- data/lib/capybara/selenium/nodes/edge_node.rb +110 -0
- data/lib/capybara/selenium/nodes/firefox_node.rb +51 -61
- 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/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 +1 -1
- data/lib/capybara/selenium/patches/persistent_client.rb +20 -0
- data/lib/capybara/server/animation_disabler.rb +43 -21
- data/lib/capybara/server/checker.rb +6 -2
- data/lib/capybara/server/middleware.rb +25 -13
- data/lib/capybara/server.rb +20 -4
- data/lib/capybara/session/config.rb +15 -11
- data/lib/capybara/session/matchers.rb +11 -11
- data/lib/capybara/session.rb +162 -131
- data/lib/capybara/spec/public/offset.js +6 -0
- data/lib/capybara/spec/public/test.js +105 -6
- data/lib/capybara/spec/session/accept_alert_spec.rb +1 -1
- data/lib/capybara/spec/session/active_element_spec.rb +31 -0
- data/lib/capybara/spec/session/all_spec.rb +89 -15
- data/lib/capybara/spec/session/ancestor_spec.rb +5 -0
- data/lib/capybara/spec/session/assert_current_path_spec.rb +5 -2
- data/lib/capybara/spec/session/assert_text_spec.rb +26 -22
- data/lib/capybara/spec/session/attach_file_spec.rb +64 -31
- data/lib/capybara/spec/session/check_spec.rb +26 -4
- data/lib/capybara/spec/session/choose_spec.rb +14 -2
- data/lib/capybara/spec/session/click_button_spec.rb +109 -61
- data/lib/capybara/spec/session/click_link_or_button_spec.rb +9 -0
- data/lib/capybara/spec/session/click_link_spec.rb +23 -1
- data/lib/capybara/spec/session/current_scope_spec.rb +1 -1
- data/lib/capybara/spec/session/current_url_spec.rb +11 -1
- data/lib/capybara/spec/session/element/matches_selector_spec.rb +40 -39
- data/lib/capybara/spec/session/evaluate_script_spec.rb +12 -0
- data/lib/capybara/spec/session/fill_in_spec.rb +46 -5
- data/lib/capybara/spec/session/find_link_spec.rb +10 -0
- data/lib/capybara/spec/session/find_spec.rb +80 -7
- data/lib/capybara/spec/session/first_spec.rb +2 -2
- data/lib/capybara/spec/session/frame/switch_to_frame_spec.rb +14 -1
- data/lib/capybara/spec/session/frame/within_frame_spec.rb +14 -1
- data/lib/capybara/spec/session/has_all_selectors_spec.rb +5 -5
- data/lib/capybara/spec/session/has_ancestor_spec.rb +46 -0
- data/lib/capybara/spec/session/has_any_selectors_spec.rb +6 -2
- data/lib/capybara/spec/session/has_button_spec.rb +81 -0
- data/lib/capybara/spec/session/has_css_spec.rb +45 -8
- data/lib/capybara/spec/session/has_current_path_spec.rb +22 -7
- data/lib/capybara/spec/session/has_element_spec.rb +47 -0
- data/lib/capybara/spec/session/has_field_spec.rb +59 -1
- data/lib/capybara/spec/session/has_link_spec.rb +40 -0
- data/lib/capybara/spec/session/has_none_selectors_spec.rb +7 -7
- data/lib/capybara/spec/session/has_select_spec.rb +42 -8
- data/lib/capybara/spec/session/has_selector_spec.rb +19 -4
- data/lib/capybara/spec/session/has_sibling_spec.rb +50 -0
- data/lib/capybara/spec/session/has_table_spec.rb +177 -0
- data/lib/capybara/spec/session/has_text_spec.rb +31 -3
- data/lib/capybara/spec/session/html_spec.rb +1 -1
- data/lib/capybara/spec/session/matches_style_spec.rb +6 -4
- data/lib/capybara/spec/session/node_spec.rb +697 -23
- data/lib/capybara/spec/session/node_wrapper_spec.rb +1 -1
- data/lib/capybara/spec/session/refresh_spec.rb +2 -1
- data/lib/capybara/spec/session/reset_session_spec.rb +21 -7
- data/lib/capybara/spec/session/save_and_open_screenshot_spec.rb +2 -2
- data/lib/capybara/spec/session/save_page_spec.rb +4 -4
- data/lib/capybara/spec/session/save_screenshot_spec.rb +4 -4
- data/lib/capybara/spec/session/scroll_spec.rb +9 -7
- data/lib/capybara/spec/session/select_spec.rb +5 -10
- data/lib/capybara/spec/session/selectors_spec.rb +24 -3
- data/lib/capybara/spec/session/uncheck_spec.rb +3 -3
- data/lib/capybara/spec/session/unselect_spec.rb +1 -1
- data/lib/capybara/spec/session/visit_spec.rb +20 -0
- data/lib/capybara/spec/session/window/become_closed_spec.rb +20 -17
- data/lib/capybara/spec/session/window/switch_to_window_spec.rb +1 -1
- data/lib/capybara/spec/session/window/window_opened_by_spec.rb +1 -1
- data/lib/capybara/spec/session/window/window_spec.rb +54 -57
- data/lib/capybara/spec/session/window/windows_spec.rb +2 -2
- data/lib/capybara/spec/session/within_spec.rb +36 -0
- data/lib/capybara/spec/spec_helper.rb +30 -19
- data/lib/capybara/spec/test_app.rb +122 -34
- data/lib/capybara/spec/views/animated.erb +49 -0
- data/lib/capybara/spec/views/form.erb +86 -8
- data/lib/capybara/spec/views/frame_child.erb +3 -2
- 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 +10 -10
- 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 +2 -1
- data/lib/capybara/spec/views/spatial.erb +31 -0
- data/lib/capybara/spec/views/tables.erb +67 -0
- data/lib/capybara/spec/views/with_animation.erb +39 -4
- 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 +34 -6
- data/lib/capybara/spec/views/with_jquery_animation.erb +24 -0
- data/lib/capybara/spec/views/with_js.erb +7 -4
- data/lib/capybara/spec/views/with_jstree.erb +26 -0
- data/lib/capybara/spec/views/with_namespace.erb +1 -0
- data/lib/capybara/spec/views/with_scope.erb +2 -2
- data/lib/capybara/spec/views/with_scope_other.erb +6 -0
- data/lib/capybara/spec/views/with_shadow.erb +31 -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 +14 -18
- data/lib/capybara.rb +91 -126
- data/spec/basic_node_spec.rb +30 -16
- data/spec/capybara_spec.rb +40 -28
- data/spec/counter_spec.rb +35 -0
- data/spec/css_builder_spec.rb +3 -1
- data/spec/css_splitter_spec.rb +1 -1
- data/spec/dsl_spec.rb +33 -22
- data/spec/filter_set_spec.rb +5 -5
- data/spec/fixtures/selenium_driver_rspec_failure.rb +3 -3
- data/spec/fixtures/selenium_driver_rspec_success.rb +3 -3
- data/spec/minitest_spec.rb +24 -2
- data/spec/minitest_spec_spec.rb +60 -45
- data/spec/per_session_config_spec.rb +1 -1
- data/spec/rack_test_spec.rb +131 -98
- data/spec/regexp_dissassembler_spec.rb +53 -39
- data/spec/result_spec.rb +68 -66
- data/spec/rspec/features_spec.rb +9 -4
- data/spec/rspec/scenarios_spec.rb +6 -2
- data/spec/rspec/shared_spec_matchers.rb +137 -98
- data/spec/rspec_matchers_spec.rb +25 -0
- data/spec/rspec_spec.rb +23 -21
- data/spec/sauce_spec_chrome.rb +43 -0
- data/spec/selector_spec.rb +77 -21
- data/spec/selenium_spec_chrome.rb +141 -39
- data/spec/selenium_spec_chrome_remote.rb +32 -17
- data/spec/selenium_spec_edge.rb +36 -8
- data/spec/selenium_spec_firefox.rb +110 -68
- data/spec/selenium_spec_firefox_remote.rb +22 -15
- data/spec/selenium_spec_ie.rb +29 -22
- data/spec/selenium_spec_safari.rb +162 -0
- data/spec/server_spec.rb +153 -81
- data/spec/session_spec.rb +11 -4
- data/spec/shared_selenium_node.rb +79 -0
- data/spec/shared_selenium_session.rb +179 -74
- data/spec/spec_helper.rb +80 -5
- data/spec/whitespace_normalizer_spec.rb +54 -0
- data/spec/xpath_builder_spec.rb +3 -1
- metadata +218 -30
- data/lib/capybara/spec/session/source_spec.rb +0 -0
- data/lib/capybara/spec/views/with_title.erb +0 -5
@@ -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
|
@@ -0,0 +1,55 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Capybara.add_selector(:link, locator_type: [String, Symbol]) do
|
4
|
+
xpath do |locator, href: true, alt: nil, title: nil, target: nil, **|
|
5
|
+
xpath = XPath.descendant(:a)
|
6
|
+
xpath = builder(xpath).add_attribute_conditions(href: href) unless href == false
|
7
|
+
|
8
|
+
if enable_aria_role
|
9
|
+
role_path = XPath.descendant[XPath.attr(:role).equals('link')]
|
10
|
+
role_path = builder(role_path).add_attribute_conditions(href: href) unless [true, false].include? href
|
11
|
+
|
12
|
+
xpath += role_path
|
13
|
+
end
|
14
|
+
|
15
|
+
unless locator.nil?
|
16
|
+
locator = locator.to_s
|
17
|
+
matchers = [XPath.attr(:id) == locator,
|
18
|
+
XPath.string.n.is(locator),
|
19
|
+
XPath.attr(:title).is(locator),
|
20
|
+
XPath.descendant(:img)[XPath.attr(:alt).is(locator)]]
|
21
|
+
matchers << XPath.attr(:'aria-label').is(locator) if enable_aria_label
|
22
|
+
matchers << XPath.attr(test_id).equals(locator) if test_id
|
23
|
+
xpath = xpath[matchers.reduce(:|)]
|
24
|
+
end
|
25
|
+
|
26
|
+
xpath = xpath[find_by_attr(:title, title)]
|
27
|
+
xpath = xpath[XPath.descendant(:img)[XPath.attr(:alt) == alt]] if alt
|
28
|
+
xpath = xpath[find_by_attr(:target, target)] if target
|
29
|
+
|
30
|
+
xpath
|
31
|
+
end
|
32
|
+
|
33
|
+
node_filter(:href) do |node, href|
|
34
|
+
# If not a Regexp it's been handled in the main XPath
|
35
|
+
(href.is_a?(Regexp) ? node[:href].match?(href) : true).tap do |res|
|
36
|
+
add_error "Expected href to match #{href.inspect} but it was #{node[:href].inspect}" unless res
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
expression_filter(:download, valid_values: [true, false, String]) do |expr, download|
|
41
|
+
builder(expr).add_attribute_conditions(download: download)
|
42
|
+
end
|
43
|
+
|
44
|
+
describe_expression_filters do |download: nil, **options|
|
45
|
+
desc = +''
|
46
|
+
if (href = options[:href])
|
47
|
+
desc << " with href #{'matching ' if href.is_a? Regexp}#{href.inspect}"
|
48
|
+
elsif options.key?(:href) && href != false # is nil specified?
|
49
|
+
desc << ' with no href attribute'
|
50
|
+
end
|
51
|
+
desc << " with download attribute#{" #{download}" if download.is_a? String}" if download
|
52
|
+
desc << ' without download attribute' if download == false
|
53
|
+
desc
|
54
|
+
end
|
55
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Capybara.add_selector(:link_or_button, locator_type: [String, Symbol]) do
|
4
|
+
label 'link or button'
|
5
|
+
xpath do |locator, **options|
|
6
|
+
%i[link button].map do |selector|
|
7
|
+
expression_for(selector, locator, **options)
|
8
|
+
end.reduce(:union)
|
9
|
+
end
|
10
|
+
|
11
|
+
node_filter(:disabled, :boolean, default: false, skip_if: :all) { |node, value| !(value ^ node.disabled?) }
|
12
|
+
|
13
|
+
describe_node_filters do |disabled: nil, **|
|
14
|
+
' that is disabled' if disabled == true
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Capybara.add_selector(:option, locator_type: [String, Symbol, Integer]) do
|
4
|
+
xpath do |locator|
|
5
|
+
xpath = XPath.descendant(:option)
|
6
|
+
xpath = xpath[XPath.string.n.is(locator.to_s)] unless locator.nil?
|
7
|
+
xpath
|
8
|
+
end
|
9
|
+
|
10
|
+
node_filter(:disabled, :boolean) { |node, value| !(value ^ node.disabled?) }
|
11
|
+
expression_filter(:disabled) { |xpath, val| val ? xpath : xpath[~XPath.attr(:disabled)] }
|
12
|
+
|
13
|
+
node_filter(:selected, :boolean) { |node, value| !(value ^ node.selected?) }
|
14
|
+
|
15
|
+
describe_expression_filters do |disabled: nil, **options|
|
16
|
+
desc = +''
|
17
|
+
desc << ' that is not disabled' if disabled == false
|
18
|
+
(expression_filters.keys & options.keys).inject(desc) { |memo, ef| memo << " with #{ef} #{options[ef]}" }
|
19
|
+
end
|
20
|
+
|
21
|
+
describe_node_filters do |**options|
|
22
|
+
desc = +''
|
23
|
+
desc << ' that is disabled' if options[:disabled]
|
24
|
+
desc << " that is#{' not' unless options[:selected]} selected" if options.key?(:selected)
|
25
|
+
desc
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Capybara.add_selector(:radio_button, locator_type: [String, Symbol]) do
|
4
|
+
label 'radio button'
|
5
|
+
xpath do |locator, allow_self: nil, **options|
|
6
|
+
xpath = XPath.axis(allow_self ? :'descendant-or-self' : :descendant, :input)[
|
7
|
+
XPath.attr(:type) == 'radio'
|
8
|
+
]
|
9
|
+
locate_field(xpath, locator, **options)
|
10
|
+
end
|
11
|
+
|
12
|
+
filter_set(:_field, %i[checked unchecked disabled name])
|
13
|
+
|
14
|
+
node_filter(%i[option with]) do |node, value|
|
15
|
+
val = node.value
|
16
|
+
(value.is_a?(Regexp) ? value.match?(val) : val == value.to_s).tap do |res|
|
17
|
+
add_error("Expected value to be #{value.inspect} but it was #{val.inspect}") unless res
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
describe_node_filters do |option: nil, with: nil, **|
|
22
|
+
desc = +''
|
23
|
+
desc << " with value #{option.inspect}" if option
|
24
|
+
desc << " with value #{with.inspect}" if with
|
25
|
+
desc
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,81 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Capybara.add_selector(:select, locator_type: [String, Symbol]) do
|
4
|
+
label 'select box'
|
5
|
+
|
6
|
+
xpath do |locator, **options|
|
7
|
+
xpath = XPath.descendant(:select)
|
8
|
+
locate_field(xpath, locator, **options)
|
9
|
+
end
|
10
|
+
|
11
|
+
filter_set(:_field, %i[disabled multiple name placeholder])
|
12
|
+
|
13
|
+
node_filter(:options) do |node, options|
|
14
|
+
actual = options_text(node)
|
15
|
+
(options.sort == actual.sort).tap do |res|
|
16
|
+
add_error("Expected options #{options.inspect} found #{actual.inspect}") unless res
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
node_filter(:enabled_options) do |node, options|
|
21
|
+
actual = options_text(node) { |o| !o.disabled? }
|
22
|
+
(options.sort == actual.sort).tap do |res|
|
23
|
+
add_error("Expected enabled options #{options.inspect} found #{actual.inspect}") unless res
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
node_filter(:disabled_options) do |node, options|
|
28
|
+
actual = options_text(node, &:disabled?)
|
29
|
+
(options.sort == actual.sort).tap do |res|
|
30
|
+
add_error("Expected disabled options #{options.inspect} found #{actual.inspect}") unless res
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
expression_filter(:with_options) do |expr, options|
|
35
|
+
options.inject(expr) do |xpath, option|
|
36
|
+
xpath.where(expression_for(:option, option))
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
node_filter(:selected) do |node, selected|
|
41
|
+
actual = options_text(node, visible: false, &:selected?)
|
42
|
+
(Array(selected).sort == actual.sort).tap do |res|
|
43
|
+
add_error("Expected #{selected.inspect} to be selected found #{actual.inspect}") unless res
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
node_filter(:with_selected) do |node, selected|
|
48
|
+
actual = options_text(node, visible: false, &:selected?)
|
49
|
+
(Array(selected) - actual).empty?.tap do |res|
|
50
|
+
add_error("Expected at least #{selected.inspect} to be selected found #{actual.inspect}") unless res
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
describe_expression_filters do |with_options: nil, **|
|
55
|
+
desc = +''
|
56
|
+
desc << " with at least options #{with_options.inspect}" if with_options
|
57
|
+
desc
|
58
|
+
end
|
59
|
+
|
60
|
+
describe_node_filters do |
|
61
|
+
options: nil, disabled_options: nil, enabled_options: nil,
|
62
|
+
selected: nil, with_selected: nil,
|
63
|
+
disabled: nil, **|
|
64
|
+
desc = +''
|
65
|
+
desc << " with options #{options.inspect}" if options
|
66
|
+
desc << " with disabled options #{disabled_options.inspect}}" if disabled_options
|
67
|
+
desc << " with enabled options #{enabled_options.inspect}" if enabled_options
|
68
|
+
desc << " with #{selected.inspect} selected" if selected
|
69
|
+
desc << " with at least #{with_selected.inspect} selected" if with_selected
|
70
|
+
desc << ' which is disabled' if disabled
|
71
|
+
desc
|
72
|
+
end
|
73
|
+
|
74
|
+
def options_text(node, **opts, &filter_block)
|
75
|
+
opts[:wait] = false
|
76
|
+
opts[:visible] = false unless node.visible?
|
77
|
+
node.all(:xpath, './/option', **opts, &filter_block).map do |o|
|
78
|
+
o.text((:all if opts[:visible] == false))
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
@@ -0,0 +1,109 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Capybara.add_selector(:table, locator_type: [String, Symbol]) do
|
4
|
+
xpath do |locator, caption: nil, **|
|
5
|
+
xpath = XPath.descendant(:table)
|
6
|
+
unless locator.nil?
|
7
|
+
locator_matchers = (XPath.attr(:id) == locator.to_s) | XPath.descendant(:caption).is(locator.to_s)
|
8
|
+
locator_matchers |= XPath.attr(test_id) == locator if test_id
|
9
|
+
xpath = xpath[locator_matchers]
|
10
|
+
end
|
11
|
+
xpath = xpath[XPath.descendant(:caption) == caption] if caption
|
12
|
+
xpath
|
13
|
+
end
|
14
|
+
|
15
|
+
expression_filter(:with_cols, valid_values: [Array]) do |xpath, cols|
|
16
|
+
col_conditions = cols.map do |col|
|
17
|
+
if col.is_a? Hash
|
18
|
+
col.reduce(nil) do |xp, (header, cell_str)|
|
19
|
+
header = XPath.descendant(:th)[XPath.string.n.is(header)]
|
20
|
+
td = XPath.descendant(:tr)[header].descendant(:td)
|
21
|
+
cell_condition = XPath.string.n.is(cell_str)
|
22
|
+
if xp
|
23
|
+
prev_cell = XPath.ancestor(:table)[1].join(xp)
|
24
|
+
cell_condition &= (prev_cell & prev_col_position?(prev_cell))
|
25
|
+
end
|
26
|
+
td[cell_condition]
|
27
|
+
end
|
28
|
+
else
|
29
|
+
cells_xp = col.reduce(nil) do |prev_cell, cell_str|
|
30
|
+
cell_condition = XPath.string.n.is(cell_str)
|
31
|
+
|
32
|
+
if prev_cell
|
33
|
+
prev_cell = XPath.ancestor(:tr)[1].preceding_sibling(:tr).join(prev_cell)
|
34
|
+
cell_condition &= (prev_cell & prev_col_position?(prev_cell))
|
35
|
+
end
|
36
|
+
|
37
|
+
XPath.descendant(:td)[cell_condition]
|
38
|
+
end
|
39
|
+
XPath.descendant(:tr).join(cells_xp)
|
40
|
+
end
|
41
|
+
end.reduce(:&)
|
42
|
+
xpath[col_conditions]
|
43
|
+
end
|
44
|
+
|
45
|
+
expression_filter(:cols, valid_values: [Array]) do |xpath, cols|
|
46
|
+
raise ArgumentError, ':cols must be an Array of Arrays' unless cols.all?(Array)
|
47
|
+
|
48
|
+
rows = cols.transpose
|
49
|
+
col_conditions = rows.map { |row| match_row(row, match_size: true) }.reduce(:&)
|
50
|
+
xpath[match_row_count(rows.size)][col_conditions]
|
51
|
+
end
|
52
|
+
|
53
|
+
expression_filter(:with_rows, valid_values: [Array]) do |xpath, rows|
|
54
|
+
rows_conditions = rows.map { |row| match_row(row) }.reduce(:&)
|
55
|
+
xpath[rows_conditions]
|
56
|
+
end
|
57
|
+
|
58
|
+
expression_filter(:rows, valid_values: [Array]) do |xpath, rows|
|
59
|
+
rows_conditions = rows.map { |row| match_row(row, match_size: true) }.reduce(:&)
|
60
|
+
xpath[match_row_count(rows.size)][rows_conditions]
|
61
|
+
end
|
62
|
+
|
63
|
+
describe_expression_filters do |caption: nil, **|
|
64
|
+
" with caption \"#{caption}\"" if caption
|
65
|
+
end
|
66
|
+
|
67
|
+
def prev_col_position?(cell)
|
68
|
+
XPath.position.equals(cell_position(cell))
|
69
|
+
end
|
70
|
+
|
71
|
+
def cell_position(cell)
|
72
|
+
cell.preceding_sibling(:td).count.plus(1)
|
73
|
+
end
|
74
|
+
|
75
|
+
def match_row(row, match_size: false)
|
76
|
+
xp = XPath.descendant(:tr)[
|
77
|
+
if row.is_a? Hash
|
78
|
+
row_match_cells_to_headers(row)
|
79
|
+
else
|
80
|
+
XPath.descendant(:td)[row_match_ordered_cells(row)]
|
81
|
+
end
|
82
|
+
]
|
83
|
+
xp = xp[XPath.descendant(:td).count.equals(row.size)] if match_size
|
84
|
+
xp
|
85
|
+
end
|
86
|
+
|
87
|
+
def match_row_count(size)
|
88
|
+
XPath.descendant(:tbody).descendant(:tr).count.equals(size) |
|
89
|
+
(XPath.descendant(:tr).count.equals(size) & ~XPath.descendant(:tbody))
|
90
|
+
end
|
91
|
+
|
92
|
+
def row_match_cells_to_headers(row)
|
93
|
+
row.map do |header, cell|
|
94
|
+
header_xp = XPath.ancestor(:table)[1].descendant(:tr)[1].descendant(:th)[XPath.string.n.is(header)]
|
95
|
+
XPath.descendant(:td)[
|
96
|
+
XPath.string.n.is(cell) & header_xp.boolean & XPath.position.equals(header_xp.preceding_sibling.count.plus(1))
|
97
|
+
]
|
98
|
+
end.reduce(:&)
|
99
|
+
end
|
100
|
+
|
101
|
+
def row_match_ordered_cells(row)
|
102
|
+
row_conditions = row.map do |cell|
|
103
|
+
XPath.self(:td)[XPath.string.n.is(cell)]
|
104
|
+
end
|
105
|
+
row_conditions.reverse.reduce do |cond, cell|
|
106
|
+
cell[XPath.following_sibling[cond]]
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Capybara.add_selector(:table_row, locator_type: [Array, Hash]) do
|
4
|
+
xpath do |locator|
|
5
|
+
xpath = XPath.descendant(:tr)
|
6
|
+
if locator.is_a? Hash
|
7
|
+
locator.reduce(xpath) do |xp, (header, cell)|
|
8
|
+
header_xp = XPath.ancestor(:table)[1].descendant(:tr)[1].descendant(:th)[XPath.string.n.is(header)]
|
9
|
+
cell_xp = XPath.descendant(:td)[
|
10
|
+
XPath.string.n.is(cell) & header_xp.boolean & XPath.position.equals(header_xp.preceding_sibling.count.plus(1))
|
11
|
+
]
|
12
|
+
xp.where(cell_xp)
|
13
|
+
end
|
14
|
+
else
|
15
|
+
initial_td = XPath.descendant(:td)[XPath.string.n.is(locator.shift)]
|
16
|
+
tds = locator.reverse.map { |cell| XPath.following_sibling(:td)[XPath.string.n.is(cell)] }
|
17
|
+
.reduce { |xp, cell| cell.where(xp) }
|
18
|
+
xpath[initial_td[tds]]
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|