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,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
|
@@ -0,0 +1,54 @@
|
|
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, **|
|
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
|
+
|
29
|
+
xpath
|
30
|
+
end
|
31
|
+
|
32
|
+
node_filter(:href) do |node, href|
|
33
|
+
# If not a Regexp it's been handled in the main XPath
|
34
|
+
(href.is_a?(Regexp) ? node[:href].match?(href) : true).tap do |res|
|
35
|
+
add_error "Expected href to match #{href.inspect} but it was #{node[:href].inspect}" unless res
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
expression_filter(:download, valid_values: [true, false, String]) do |expr, download|
|
40
|
+
builder(expr).add_attribute_conditions(download: download)
|
41
|
+
end
|
42
|
+
|
43
|
+
describe_expression_filters do |download: nil, **options|
|
44
|
+
desc = +''
|
45
|
+
if (href = options[:href])
|
46
|
+
desc << " with href #{'matching ' if href.is_a? Regexp}#{href.inspect}"
|
47
|
+
elsif options.key?(:href) && href != false # is nil specified?
|
48
|
+
desc << ' with no href attribute'
|
49
|
+
end
|
50
|
+
desc << " with download attribute#{" #{download}" if download.is_a? String}" if download
|
51
|
+
desc << ' without download attribute' if download == false
|
52
|
+
desc
|
53
|
+
end
|
54
|
+
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) & 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
|