capybara 3.32.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.yardopts +1 -0
- data/History.md +1813 -0
- data/License.txt +22 -0
- data/README.md +1099 -0
- data/lib/capybara.rb +511 -0
- data/lib/capybara/config.rb +94 -0
- data/lib/capybara/cucumber.rb +27 -0
- data/lib/capybara/driver/base.rb +170 -0
- data/lib/capybara/driver/node.rb +139 -0
- data/lib/capybara/dsl.rb +65 -0
- data/lib/capybara/helpers.rb +108 -0
- data/lib/capybara/minitest.rb +386 -0
- data/lib/capybara/minitest/spec.rb +264 -0
- data/lib/capybara/node/actions.rb +420 -0
- data/lib/capybara/node/base.rb +143 -0
- data/lib/capybara/node/document.rb +48 -0
- data/lib/capybara/node/document_matchers.rb +67 -0
- data/lib/capybara/node/element.rb +606 -0
- data/lib/capybara/node/finders.rb +325 -0
- data/lib/capybara/node/matchers.rb +883 -0
- data/lib/capybara/node/simple.rb +208 -0
- data/lib/capybara/queries/ancestor_query.rb +27 -0
- data/lib/capybara/queries/base_query.rb +106 -0
- data/lib/capybara/queries/current_path_query.rb +51 -0
- data/lib/capybara/queries/match_query.rb +26 -0
- data/lib/capybara/queries/selector_query.rb +710 -0
- data/lib/capybara/queries/sibling_query.rb +26 -0
- data/lib/capybara/queries/style_query.rb +45 -0
- data/lib/capybara/queries/text_query.rb +110 -0
- data/lib/capybara/queries/title_query.rb +39 -0
- data/lib/capybara/rack_test/browser.rb +140 -0
- data/lib/capybara/rack_test/css_handlers.rb +13 -0
- data/lib/capybara/rack_test/driver.rb +109 -0
- data/lib/capybara/rack_test/errors.rb +6 -0
- data/lib/capybara/rack_test/form.rb +127 -0
- data/lib/capybara/rack_test/node.rb +325 -0
- data/lib/capybara/rails.rb +16 -0
- data/lib/capybara/registrations/drivers.rb +36 -0
- data/lib/capybara/registrations/patches/puma_ssl.rb +27 -0
- data/lib/capybara/registrations/servers.rb +44 -0
- data/lib/capybara/result.rb +190 -0
- data/lib/capybara/rspec.rb +29 -0
- data/lib/capybara/rspec/features.rb +23 -0
- data/lib/capybara/rspec/matcher_proxies.rb +82 -0
- data/lib/capybara/rspec/matchers.rb +201 -0
- data/lib/capybara/rspec/matchers/base.rb +111 -0
- data/lib/capybara/rspec/matchers/become_closed.rb +33 -0
- data/lib/capybara/rspec/matchers/compound.rb +88 -0
- data/lib/capybara/rspec/matchers/count_sugar.rb +37 -0
- data/lib/capybara/rspec/matchers/have_ancestor.rb +28 -0
- data/lib/capybara/rspec/matchers/have_current_path.rb +29 -0
- data/lib/capybara/rspec/matchers/have_selector.rb +77 -0
- data/lib/capybara/rspec/matchers/have_sibling.rb +27 -0
- data/lib/capybara/rspec/matchers/have_text.rb +33 -0
- data/lib/capybara/rspec/matchers/have_title.rb +29 -0
- data/lib/capybara/rspec/matchers/match_selector.rb +27 -0
- data/lib/capybara/rspec/matchers/match_style.rb +38 -0
- data/lib/capybara/rspec/matchers/spatial_sugar.rb +39 -0
- data/lib/capybara/selector.rb +233 -0
- data/lib/capybara/selector/builders/css_builder.rb +84 -0
- data/lib/capybara/selector/builders/xpath_builder.rb +69 -0
- data/lib/capybara/selector/css.rb +102 -0
- data/lib/capybara/selector/definition.rb +276 -0
- data/lib/capybara/selector/definition/button.rb +51 -0
- data/lib/capybara/selector/definition/checkbox.rb +26 -0
- data/lib/capybara/selector/definition/css.rb +10 -0
- data/lib/capybara/selector/definition/datalist_input.rb +35 -0
- data/lib/capybara/selector/definition/datalist_option.rb +25 -0
- data/lib/capybara/selector/definition/element.rb +27 -0
- data/lib/capybara/selector/definition/field.rb +40 -0
- data/lib/capybara/selector/definition/fieldset.rb +14 -0
- data/lib/capybara/selector/definition/file_field.rb +13 -0
- data/lib/capybara/selector/definition/fillable_field.rb +33 -0
- data/lib/capybara/selector/definition/frame.rb +17 -0
- data/lib/capybara/selector/definition/id.rb +6 -0
- data/lib/capybara/selector/definition/label.rb +62 -0
- data/lib/capybara/selector/definition/link.rb +46 -0
- data/lib/capybara/selector/definition/link_or_button.rb +16 -0
- data/lib/capybara/selector/definition/option.rb +27 -0
- data/lib/capybara/selector/definition/radio_button.rb +27 -0
- data/lib/capybara/selector/definition/select.rb +81 -0
- data/lib/capybara/selector/definition/table.rb +109 -0
- data/lib/capybara/selector/definition/table_row.rb +21 -0
- data/lib/capybara/selector/definition/xpath.rb +5 -0
- data/lib/capybara/selector/filter.rb +5 -0
- data/lib/capybara/selector/filter_set.rb +124 -0
- data/lib/capybara/selector/filters/base.rb +77 -0
- data/lib/capybara/selector/filters/expression_filter.rb +22 -0
- data/lib/capybara/selector/filters/locator_filter.rb +29 -0
- data/lib/capybara/selector/filters/node_filter.rb +31 -0
- data/lib/capybara/selector/regexp_disassembler.rb +214 -0
- data/lib/capybara/selector/selector.rb +147 -0
- data/lib/capybara/selector/xpath_extensions.rb +17 -0
- data/lib/capybara/selenium/atoms/getAttribute.min.js +1 -0
- data/lib/capybara/selenium/atoms/isDisplayed.min.js +1 -0
- data/lib/capybara/selenium/atoms/src/getAttribute.js +161 -0
- data/lib/capybara/selenium/atoms/src/isDisplayed.js +454 -0
- data/lib/capybara/selenium/driver.rb +496 -0
- data/lib/capybara/selenium/driver_specializations/chrome_driver.rb +119 -0
- data/lib/capybara/selenium/driver_specializations/edge_driver.rb +126 -0
- data/lib/capybara/selenium/driver_specializations/firefox_driver.rb +89 -0
- data/lib/capybara/selenium/driver_specializations/internet_explorer_driver.rb +26 -0
- data/lib/capybara/selenium/driver_specializations/safari_driver.rb +24 -0
- data/lib/capybara/selenium/extensions/file_input_click_emulation.rb +34 -0
- data/lib/capybara/selenium/extensions/find.rb +110 -0
- data/lib/capybara/selenium/extensions/html5_drag.rb +228 -0
- data/lib/capybara/selenium/extensions/modifier_keys_stack.rb +28 -0
- data/lib/capybara/selenium/extensions/scroll.rb +78 -0
- data/lib/capybara/selenium/logger_suppressor.rb +34 -0
- data/lib/capybara/selenium/node.rb +610 -0
- data/lib/capybara/selenium/nodes/chrome_node.rb +119 -0
- data/lib/capybara/selenium/nodes/edge_node.rb +104 -0
- data/lib/capybara/selenium/nodes/firefox_node.rb +131 -0
- data/lib/capybara/selenium/nodes/ie_node.rb +22 -0
- data/lib/capybara/selenium/nodes/safari_node.rb +118 -0
- data/lib/capybara/selenium/patches/action_pauser.rb +26 -0
- data/lib/capybara/selenium/patches/atoms.rb +18 -0
- data/lib/capybara/selenium/patches/is_displayed.rb +16 -0
- data/lib/capybara/selenium/patches/logs.rb +47 -0
- data/lib/capybara/selenium/patches/pause_duration_fix.rb +9 -0
- data/lib/capybara/selenium/patches/persistent_client.rb +20 -0
- data/lib/capybara/server.rb +126 -0
- data/lib/capybara/server/animation_disabler.rb +58 -0
- data/lib/capybara/server/checker.rb +44 -0
- data/lib/capybara/server/middleware.rb +69 -0
- data/lib/capybara/session.rb +942 -0
- data/lib/capybara/session/config.rb +124 -0
- data/lib/capybara/session/matchers.rb +87 -0
- data/lib/capybara/spec/fixtures/another_test_file.txt +1 -0
- data/lib/capybara/spec/fixtures/capybara.jpg +3 -0
- data/lib/capybara/spec/fixtures/no_extension +1 -0
- data/lib/capybara/spec/fixtures/test_file.txt +1 -0
- data/lib/capybara/spec/public/jquery-ui.js +13 -0
- data/lib/capybara/spec/public/jquery.js +5 -0
- data/lib/capybara/spec/public/offset.js +6 -0
- data/lib/capybara/spec/public/test.js +268 -0
- data/lib/capybara/spec/session/accept_alert_spec.rb +81 -0
- data/lib/capybara/spec/session/accept_confirm_spec.rb +32 -0
- data/lib/capybara/spec/session/accept_prompt_spec.rb +78 -0
- data/lib/capybara/spec/session/all_spec.rb +278 -0
- data/lib/capybara/spec/session/ancestor_spec.rb +88 -0
- data/lib/capybara/spec/session/assert_all_of_selectors_spec.rb +140 -0
- data/lib/capybara/spec/session/assert_current_path_spec.rb +75 -0
- data/lib/capybara/spec/session/assert_selector_spec.rb +143 -0
- data/lib/capybara/spec/session/assert_style_spec.rb +26 -0
- data/lib/capybara/spec/session/assert_text_spec.rb +258 -0
- data/lib/capybara/spec/session/assert_title_spec.rb +93 -0
- data/lib/capybara/spec/session/attach_file_spec.rb +216 -0
- data/lib/capybara/spec/session/body_spec.rb +23 -0
- data/lib/capybara/spec/session/check_spec.rb +235 -0
- data/lib/capybara/spec/session/choose_spec.rb +121 -0
- data/lib/capybara/spec/session/click_button_spec.rb +506 -0
- data/lib/capybara/spec/session/click_link_or_button_spec.rb +129 -0
- data/lib/capybara/spec/session/click_link_spec.rb +229 -0
- data/lib/capybara/spec/session/current_scope_spec.rb +31 -0
- data/lib/capybara/spec/session/current_url_spec.rb +115 -0
- data/lib/capybara/spec/session/dismiss_confirm_spec.rb +36 -0
- data/lib/capybara/spec/session/dismiss_prompt_spec.rb +21 -0
- data/lib/capybara/spec/session/element/assert_match_selector_spec.rb +38 -0
- data/lib/capybara/spec/session/element/match_css_spec.rb +31 -0
- data/lib/capybara/spec/session/element/match_xpath_spec.rb +25 -0
- data/lib/capybara/spec/session/element/matches_selector_spec.rb +120 -0
- data/lib/capybara/spec/session/evaluate_async_script_spec.rb +23 -0
- data/lib/capybara/spec/session/evaluate_script_spec.rb +49 -0
- data/lib/capybara/spec/session/execute_script_spec.rb +28 -0
- data/lib/capybara/spec/session/fill_in_spec.rb +286 -0
- data/lib/capybara/spec/session/find_button_spec.rb +74 -0
- data/lib/capybara/spec/session/find_by_id_spec.rb +33 -0
- data/lib/capybara/spec/session/find_field_spec.rb +113 -0
- data/lib/capybara/spec/session/find_link_spec.rb +70 -0
- data/lib/capybara/spec/session/find_spec.rb +531 -0
- data/lib/capybara/spec/session/first_spec.rb +156 -0
- data/lib/capybara/spec/session/frame/frame_title_spec.rb +23 -0
- data/lib/capybara/spec/session/frame/frame_url_spec.rb +23 -0
- data/lib/capybara/spec/session/frame/switch_to_frame_spec.rb +116 -0
- data/lib/capybara/spec/session/frame/within_frame_spec.rb +112 -0
- data/lib/capybara/spec/session/go_back_spec.rb +12 -0
- data/lib/capybara/spec/session/go_forward_spec.rb +14 -0
- data/lib/capybara/spec/session/has_all_selectors_spec.rb +69 -0
- data/lib/capybara/spec/session/has_ancestor_spec.rb +46 -0
- data/lib/capybara/spec/session/has_any_selectors_spec.rb +25 -0
- data/lib/capybara/spec/session/has_button_spec.rb +69 -0
- data/lib/capybara/spec/session/has_css_spec.rb +374 -0
- data/lib/capybara/spec/session/has_current_path_spec.rb +138 -0
- data/lib/capybara/spec/session/has_field_spec.rb +349 -0
- data/lib/capybara/spec/session/has_link_spec.rb +39 -0
- data/lib/capybara/spec/session/has_none_selectors_spec.rb +78 -0
- data/lib/capybara/spec/session/has_select_spec.rb +310 -0
- data/lib/capybara/spec/session/has_selector_spec.rb +202 -0
- data/lib/capybara/spec/session/has_sibling_spec.rb +50 -0
- data/lib/capybara/spec/session/has_table_spec.rb +198 -0
- data/lib/capybara/spec/session/has_text_spec.rb +394 -0
- data/lib/capybara/spec/session/has_title_spec.rb +71 -0
- data/lib/capybara/spec/session/has_xpath_spec.rb +149 -0
- data/lib/capybara/spec/session/headers_spec.rb +8 -0
- data/lib/capybara/spec/session/html_spec.rb +47 -0
- data/lib/capybara/spec/session/matches_style_spec.rb +35 -0
- data/lib/capybara/spec/session/node_spec.rb +1292 -0
- data/lib/capybara/spec/session/node_wrapper_spec.rb +39 -0
- data/lib/capybara/spec/session/refresh_spec.rb +33 -0
- data/lib/capybara/spec/session/reset_session_spec.rb +148 -0
- data/lib/capybara/spec/session/response_code_spec.rb +8 -0
- data/lib/capybara/spec/session/save_and_open_page_spec.rb +21 -0
- data/lib/capybara/spec/session/save_and_open_screenshot_spec.rb +43 -0
- data/lib/capybara/spec/session/save_page_spec.rb +110 -0
- data/lib/capybara/spec/session/save_screenshot_spec.rb +55 -0
- data/lib/capybara/spec/session/screenshot_spec.rb +18 -0
- data/lib/capybara/spec/session/scroll_spec.rb +117 -0
- data/lib/capybara/spec/session/select_spec.rb +229 -0
- data/lib/capybara/spec/session/selectors_spec.rb +98 -0
- data/lib/capybara/spec/session/sibling_spec.rb +52 -0
- data/lib/capybara/spec/session/source_spec.rb +0 -0
- data/lib/capybara/spec/session/text_spec.rb +74 -0
- data/lib/capybara/spec/session/title_spec.rb +29 -0
- data/lib/capybara/spec/session/uncheck_spec.rb +100 -0
- data/lib/capybara/spec/session/unselect_spec.rb +116 -0
- data/lib/capybara/spec/session/visit_spec.rb +204 -0
- data/lib/capybara/spec/session/window/become_closed_spec.rb +89 -0
- data/lib/capybara/spec/session/window/current_window_spec.rb +28 -0
- data/lib/capybara/spec/session/window/open_new_window_spec.rb +31 -0
- data/lib/capybara/spec/session/window/switch_to_window_spec.rb +132 -0
- data/lib/capybara/spec/session/window/window_opened_by_spec.rb +99 -0
- data/lib/capybara/spec/session/window/window_spec.rb +203 -0
- data/lib/capybara/spec/session/window/windows_spec.rb +34 -0
- data/lib/capybara/spec/session/window/within_window_spec.rb +157 -0
- data/lib/capybara/spec/session/within_spec.rb +199 -0
- data/lib/capybara/spec/spec_helper.rb +134 -0
- data/lib/capybara/spec/test_app.rb +226 -0
- data/lib/capybara/spec/views/animated.erb +49 -0
- data/lib/capybara/spec/views/buttons.erb +5 -0
- data/lib/capybara/spec/views/fieldsets.erb +30 -0
- data/lib/capybara/spec/views/form.erb +685 -0
- data/lib/capybara/spec/views/frame_child.erb +18 -0
- data/lib/capybara/spec/views/frame_one.erb +10 -0
- data/lib/capybara/spec/views/frame_parent.erb +9 -0
- data/lib/capybara/spec/views/frame_two.erb +9 -0
- data/lib/capybara/spec/views/header_links.erb +8 -0
- data/lib/capybara/spec/views/host_links.erb +13 -0
- data/lib/capybara/spec/views/initial_alert.erb +10 -0
- data/lib/capybara/spec/views/obscured.erb +47 -0
- data/lib/capybara/spec/views/offset.erb +32 -0
- data/lib/capybara/spec/views/path.erb +13 -0
- data/lib/capybara/spec/views/popup_one.erb +9 -0
- data/lib/capybara/spec/views/popup_two.erb +9 -0
- data/lib/capybara/spec/views/postback.erb +14 -0
- data/lib/capybara/spec/views/react.erb +45 -0
- data/lib/capybara/spec/views/scroll.erb +20 -0
- data/lib/capybara/spec/views/spatial.erb +31 -0
- data/lib/capybara/spec/views/tables.erb +130 -0
- data/lib/capybara/spec/views/with_animation.erb +74 -0
- data/lib/capybara/spec/views/with_base_tag.erb +11 -0
- data/lib/capybara/spec/views/with_count.erb +8 -0
- data/lib/capybara/spec/views/with_dragula.erb +22 -0
- data/lib/capybara/spec/views/with_fixed_header_footer.erb +17 -0
- data/lib/capybara/spec/views/with_hover.erb +24 -0
- data/lib/capybara/spec/views/with_hover1.erb +10 -0
- data/lib/capybara/spec/views/with_html.erb +208 -0
- data/lib/capybara/spec/views/with_html5_svg.erb +20 -0
- data/lib/capybara/spec/views/with_html_entities.erb +2 -0
- data/lib/capybara/spec/views/with_js.erb +160 -0
- data/lib/capybara/spec/views/with_jstree.erb +26 -0
- data/lib/capybara/spec/views/with_namespace.erb +20 -0
- data/lib/capybara/spec/views/with_scope.erb +42 -0
- data/lib/capybara/spec/views/with_scope_other.erb +6 -0
- data/lib/capybara/spec/views/with_simple_html.erb +2 -0
- data/lib/capybara/spec/views/with_slow_unload.erb +17 -0
- data/lib/capybara/spec/views/with_sortable_js.erb +21 -0
- data/lib/capybara/spec/views/with_title.erb +5 -0
- data/lib/capybara/spec/views/with_unload_alert.erb +14 -0
- data/lib/capybara/spec/views/with_windows.erb +54 -0
- data/lib/capybara/spec/views/within_frames.erb +15 -0
- data/lib/capybara/version.rb +5 -0
- data/lib/capybara/window.rb +146 -0
- data/spec/basic_node_spec.rb +154 -0
- data/spec/capybara_spec.rb +112 -0
- data/spec/css_builder_spec.rb +101 -0
- data/spec/css_splitter_spec.rb +38 -0
- data/spec/dsl_spec.rb +276 -0
- data/spec/filter_set_spec.rb +46 -0
- data/spec/fixtures/capybara.csv +1 -0
- data/spec/fixtures/certificate.pem +25 -0
- data/spec/fixtures/key.pem +27 -0
- data/spec/fixtures/selenium_driver_rspec_failure.rb +13 -0
- data/spec/fixtures/selenium_driver_rspec_success.rb +13 -0
- data/spec/minitest_spec.rb +163 -0
- data/spec/minitest_spec_spec.rb +162 -0
- data/spec/per_session_config_spec.rb +68 -0
- data/spec/rack_test_spec.rb +268 -0
- data/spec/regexp_dissassembler_spec.rb +250 -0
- data/spec/result_spec.rb +196 -0
- data/spec/rspec/features_spec.rb +99 -0
- data/spec/rspec/scenarios_spec.rb +19 -0
- data/spec/rspec/shared_spec_matchers.rb +947 -0
- data/spec/rspec/views_spec.rb +14 -0
- data/spec/rspec_matchers_spec.rb +62 -0
- data/spec/rspec_spec.rb +145 -0
- data/spec/sauce_spec_chrome.rb +43 -0
- data/spec/selector_spec.rb +513 -0
- data/spec/selenium_spec_chrome.rb +188 -0
- data/spec/selenium_spec_chrome_remote.rb +96 -0
- data/spec/selenium_spec_edge.rb +47 -0
- data/spec/selenium_spec_firefox.rb +208 -0
- data/spec/selenium_spec_firefox_remote.rb +80 -0
- data/spec/selenium_spec_ie.rb +150 -0
- data/spec/selenium_spec_safari.rb +148 -0
- data/spec/server_spec.rb +292 -0
- data/spec/session_spec.rb +91 -0
- data/spec/shared_selenium_node.rb +83 -0
- data/spec/shared_selenium_session.rb +476 -0
- data/spec/spec_helper.rb +100 -0
- data/spec/xpath_builder_spec.rb +93 -0
- metadata +753 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Capybara
|
|
4
|
+
# @api private
|
|
5
|
+
module Helpers
|
|
6
|
+
module_function
|
|
7
|
+
|
|
8
|
+
##
|
|
9
|
+
# @deprecated
|
|
10
|
+
# Normalizes whitespace space by stripping leading and trailing
|
|
11
|
+
# whitespace and replacing sequences of whitespace characters
|
|
12
|
+
# with a single space.
|
|
13
|
+
#
|
|
14
|
+
# @param [String] text Text to normalize
|
|
15
|
+
# @return [String] Normalized text
|
|
16
|
+
#
|
|
17
|
+
def normalize_whitespace(text)
|
|
18
|
+
warn 'DEPRECATED: Capybara::Helpers::normalize_whitespace is deprecated, please update your driver'
|
|
19
|
+
text.to_s.gsub(/[[:space:]]+/, ' ').strip
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
##
|
|
23
|
+
#
|
|
24
|
+
# Escapes any characters that would have special meaning in a regexp
|
|
25
|
+
# if text is not a regexp
|
|
26
|
+
#
|
|
27
|
+
# @param [String] text Text to escape
|
|
28
|
+
# @param [Boolean] exact (false) Whether or not this should be an exact text match
|
|
29
|
+
# @param [Fixnum, Boolean, nil] options Options passed to Regexp.new when creating the Regexp
|
|
30
|
+
# @return [Regexp] Regexp to match the passed in text and options
|
|
31
|
+
#
|
|
32
|
+
def to_regexp(text, exact: false, all_whitespace: false, options: nil)
|
|
33
|
+
return text if text.is_a?(Regexp)
|
|
34
|
+
|
|
35
|
+
escaped = Regexp.escape(text)
|
|
36
|
+
escaped = escaped.gsub('\\ ', '[[:blank:]]') if all_whitespace
|
|
37
|
+
escaped = "\\A#{escaped}\\z" if exact
|
|
38
|
+
Regexp.new(escaped, options)
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
##
|
|
42
|
+
#
|
|
43
|
+
# Injects a `<base>` tag into the given HTML code, pointing to
|
|
44
|
+
# {Capybara.configure asset_host}.
|
|
45
|
+
#
|
|
46
|
+
# @param [String] html HTML code to inject into
|
|
47
|
+
# @param [URL] host (Capybara.asset_host) The host from which assets should be loaded
|
|
48
|
+
# @return [String] The modified HTML code
|
|
49
|
+
#
|
|
50
|
+
def inject_asset_host(html, host: Capybara.asset_host)
|
|
51
|
+
if host && Nokogiri::HTML(html).css('base').empty?
|
|
52
|
+
html.match(/<head[^<]*?>/) do |m|
|
|
53
|
+
return html.clone.insert m.end(0), "<base href='#{host}' />"
|
|
54
|
+
end
|
|
55
|
+
end
|
|
56
|
+
html
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
##
|
|
60
|
+
#
|
|
61
|
+
# A poor man's `pluralize`. Given two declensions, one singular and one
|
|
62
|
+
# plural, as well as a count, this will pick the correct declension. This
|
|
63
|
+
# way we can generate grammatically correct error message.
|
|
64
|
+
#
|
|
65
|
+
# @param [String] singular The singular form of the word
|
|
66
|
+
# @param [String] plural The plural form of the word
|
|
67
|
+
# @param [Integer] count The number of items
|
|
68
|
+
#
|
|
69
|
+
def declension(singular, plural, count)
|
|
70
|
+
count == 1 ? singular : plural
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
if defined?(Process::CLOCK_MONOTONIC)
|
|
74
|
+
def monotonic_time; Process.clock_gettime Process::CLOCK_MONOTONIC; end
|
|
75
|
+
else
|
|
76
|
+
def monotonic_time; Time.now.to_f; end
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
def timer(expire_in:)
|
|
80
|
+
Timer.new(expire_in)
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
class Timer
|
|
84
|
+
def initialize(expire_in)
|
|
85
|
+
@start = current
|
|
86
|
+
@expire_in = expire_in
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
def expired?
|
|
90
|
+
if stalled?
|
|
91
|
+
raise Capybara::FrozenInTime, 'Time appears to be frozen. Capybara does not work with libraries which freeze time, consider using time travelling instead'
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
current - @start >= @expire_in
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
def stalled?
|
|
98
|
+
@start == current
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
private
|
|
102
|
+
|
|
103
|
+
def current
|
|
104
|
+
Capybara::Helpers.monotonic_time
|
|
105
|
+
end
|
|
106
|
+
end
|
|
107
|
+
end
|
|
108
|
+
end
|
|
@@ -0,0 +1,386 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'minitest'
|
|
4
|
+
require 'capybara/dsl'
|
|
5
|
+
|
|
6
|
+
module Capybara
|
|
7
|
+
module Minitest
|
|
8
|
+
module Assertions
|
|
9
|
+
##
|
|
10
|
+
# Assert text exists
|
|
11
|
+
#
|
|
12
|
+
# @!method assert_content
|
|
13
|
+
# @!method assert_text
|
|
14
|
+
# See {Capybara::Node::Matchers#assert_text}
|
|
15
|
+
|
|
16
|
+
##
|
|
17
|
+
# Assert text does not exist
|
|
18
|
+
#
|
|
19
|
+
# @!method refute_content
|
|
20
|
+
# @!method assert_no_content
|
|
21
|
+
# @!method refute_text
|
|
22
|
+
# @!method assert_no_text
|
|
23
|
+
# See {Capybara::Node::Matchers#assert_no_text}
|
|
24
|
+
|
|
25
|
+
##
|
|
26
|
+
# Assertion that page title does match
|
|
27
|
+
#
|
|
28
|
+
# @!method assert_title
|
|
29
|
+
# See {Capybara::Node::DocumentMatchers#assert_title}
|
|
30
|
+
|
|
31
|
+
##
|
|
32
|
+
# Assertion that page title does not match
|
|
33
|
+
#
|
|
34
|
+
# @!method refute_title
|
|
35
|
+
# @!method assert_no_title
|
|
36
|
+
# See {Capybara::Node::DocumentMatchers#assert_no_title}
|
|
37
|
+
|
|
38
|
+
##
|
|
39
|
+
# Assertion that current path matches
|
|
40
|
+
#
|
|
41
|
+
# @!method assert_current_path
|
|
42
|
+
# See {Capybara::SessionMatchers#assert_current_path}
|
|
43
|
+
|
|
44
|
+
##
|
|
45
|
+
# Assertion that current page does not match
|
|
46
|
+
#
|
|
47
|
+
# @!method refute_current_path
|
|
48
|
+
# @!method assert_no_current_path
|
|
49
|
+
# See {Capybara::SessionMatchers#assert_no_current_path}
|
|
50
|
+
|
|
51
|
+
%w[text no_text title no_title current_path no_current_path].each do |assertion_name|
|
|
52
|
+
class_eval <<-ASSERTION, __FILE__, __LINE__ + 1
|
|
53
|
+
def assert_#{assertion_name} *args
|
|
54
|
+
self.assertions +=1
|
|
55
|
+
subject, args = determine_subject(args)
|
|
56
|
+
subject.assert_#{assertion_name}(*args)
|
|
57
|
+
rescue Capybara::ExpectationNotMet => e
|
|
58
|
+
raise ::Minitest::Assertion, e.message
|
|
59
|
+
end
|
|
60
|
+
ASSERTION
|
|
61
|
+
ruby2_keywords "assert_#{assertion_name}" if respond_to?(:ruby2_keywords)
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
alias_method :refute_title, :assert_no_title
|
|
65
|
+
alias_method :refute_text, :assert_no_text
|
|
66
|
+
alias_method :refute_content, :refute_text
|
|
67
|
+
alias_method :refute_current_path, :assert_no_current_path
|
|
68
|
+
alias_method :assert_content, :assert_text
|
|
69
|
+
alias_method :assert_no_content, :refute_text
|
|
70
|
+
|
|
71
|
+
##
|
|
72
|
+
# Assert selector exists on page
|
|
73
|
+
#
|
|
74
|
+
# @!method assert_selector
|
|
75
|
+
# See {Capybara::Node::Matchers#assert_selector}
|
|
76
|
+
|
|
77
|
+
##
|
|
78
|
+
# Assert selector does not exist on page
|
|
79
|
+
#
|
|
80
|
+
# @!method refute_selector
|
|
81
|
+
# @!method assert_no_selector
|
|
82
|
+
# See {Capybara::Node::Matchers#assert_no_selector}
|
|
83
|
+
|
|
84
|
+
##
|
|
85
|
+
# Assert element matches selector
|
|
86
|
+
#
|
|
87
|
+
# @!method assert_matches_selector
|
|
88
|
+
# See {Capybara::Node::Matchers#assert_matches_selector}
|
|
89
|
+
|
|
90
|
+
##
|
|
91
|
+
# Assert element does not match selector
|
|
92
|
+
#
|
|
93
|
+
# @!method refute_matches_selector
|
|
94
|
+
# @!method assert_not_matches_selector
|
|
95
|
+
# See {Capybara::Node::Matchers#assert_not_matches_selector}
|
|
96
|
+
|
|
97
|
+
##
|
|
98
|
+
# Assert all of the provided selectors exist on page
|
|
99
|
+
#
|
|
100
|
+
# @!method assert_all_of_selectors
|
|
101
|
+
# See {Capybara::Node::Matchers#assert_all_of_selectors}
|
|
102
|
+
|
|
103
|
+
##
|
|
104
|
+
# Assert none of the provided selectors exist on page
|
|
105
|
+
#
|
|
106
|
+
# @!method assert_none_of_selectors
|
|
107
|
+
# See {Capybara::Node::Matchers#assert_none_of_selectors}
|
|
108
|
+
|
|
109
|
+
##
|
|
110
|
+
# Assert any of the provided selectors exist on page
|
|
111
|
+
#
|
|
112
|
+
# @!method assert_any_of_selectors
|
|
113
|
+
# See {Capybara::Node::Matchers#assert_any_of_selectors}
|
|
114
|
+
|
|
115
|
+
##
|
|
116
|
+
# Assert element has the provided CSS styles
|
|
117
|
+
#
|
|
118
|
+
# @!method assert_matches_style
|
|
119
|
+
# See {Capybara::Node::Matchers#assert_matches_style}
|
|
120
|
+
|
|
121
|
+
##
|
|
122
|
+
# Assert element has a matching sibling
|
|
123
|
+
#
|
|
124
|
+
# @!method assert_sibling
|
|
125
|
+
# See {Capybara::Node::Matchers#assert_sibling}
|
|
126
|
+
|
|
127
|
+
##
|
|
128
|
+
# Assert element does not have a matching sibling
|
|
129
|
+
#
|
|
130
|
+
# @!method refute_sibling
|
|
131
|
+
# @!method assert_no_sibling
|
|
132
|
+
# See {Capybara::Node::Matchers#assert_no_sibling}
|
|
133
|
+
|
|
134
|
+
##
|
|
135
|
+
# Assert element has a matching ancestor
|
|
136
|
+
#
|
|
137
|
+
# @!method assert_ancestor
|
|
138
|
+
# See {Capybara::Node::Matchers#assert_ancestor}
|
|
139
|
+
|
|
140
|
+
##
|
|
141
|
+
# Assert element does not have a matching ancestor
|
|
142
|
+
#
|
|
143
|
+
# @!method refute_ancestor
|
|
144
|
+
# @!method assert_no_ancestor
|
|
145
|
+
# See {Capybara::Node::Matchers#assert_no_ancestor}
|
|
146
|
+
|
|
147
|
+
%w[selector no_selector matches_style
|
|
148
|
+
all_of_selectors none_of_selectors any_of_selectors
|
|
149
|
+
matches_selector not_matches_selector
|
|
150
|
+
sibling no_sibling ancestor no_ancestor].each do |assertion_name|
|
|
151
|
+
class_eval <<-ASSERTION, __FILE__, __LINE__ + 1
|
|
152
|
+
def assert_#{assertion_name} *args, &optional_filter_block
|
|
153
|
+
self.assertions +=1
|
|
154
|
+
subject, args = determine_subject(args)
|
|
155
|
+
subject.assert_#{assertion_name}(*args, &optional_filter_block)
|
|
156
|
+
rescue Capybara::ExpectationNotMet => e
|
|
157
|
+
raise ::Minitest::Assertion, e.message
|
|
158
|
+
end
|
|
159
|
+
ASSERTION
|
|
160
|
+
ruby2_keywords "assert_#{assertion_name}" if respond_to?(:ruby2_keywords)
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
alias_method :refute_selector, :assert_no_selector
|
|
164
|
+
alias_method :refute_matches_selector, :assert_not_matches_selector
|
|
165
|
+
alias_method :refute_ancestor, :assert_no_ancestor
|
|
166
|
+
alias_method :refute_sibling, :assert_no_sibling
|
|
167
|
+
|
|
168
|
+
##
|
|
169
|
+
# Assert that provided xpath exists
|
|
170
|
+
#
|
|
171
|
+
# @!method assert_xpath
|
|
172
|
+
# See {Capybara::Node::Matchers#has_xpath?}
|
|
173
|
+
|
|
174
|
+
##
|
|
175
|
+
# Assert that provide xpath does not exist
|
|
176
|
+
#
|
|
177
|
+
# @!method refute_xpath
|
|
178
|
+
# @!method assert_no_xpath
|
|
179
|
+
# See {Capybara::Node::Matchers#has_no_xpath?}
|
|
180
|
+
|
|
181
|
+
##
|
|
182
|
+
# Assert that provided css exists
|
|
183
|
+
#
|
|
184
|
+
# @!method assert_css
|
|
185
|
+
# See {Capybara::Node::Matchers#has_css?}
|
|
186
|
+
|
|
187
|
+
##
|
|
188
|
+
# Assert that provided css does not exist
|
|
189
|
+
#
|
|
190
|
+
# @!method refute_css
|
|
191
|
+
# @!method assert_no_css
|
|
192
|
+
# See {Capybara::Node::Matchers#has_no_css?}
|
|
193
|
+
|
|
194
|
+
##
|
|
195
|
+
# Assert that provided link exists
|
|
196
|
+
#
|
|
197
|
+
# @!method assert_link
|
|
198
|
+
# See {Capybara::Node::Matchers#has_link?}
|
|
199
|
+
|
|
200
|
+
##
|
|
201
|
+
# Assert that provided link does not exist
|
|
202
|
+
#
|
|
203
|
+
# @!method assert_no_link
|
|
204
|
+
# @!method refute_link
|
|
205
|
+
# See {Capybara::Node::Matchers#has_no_link?}
|
|
206
|
+
|
|
207
|
+
##
|
|
208
|
+
# Assert that provided button exists
|
|
209
|
+
#
|
|
210
|
+
# @!method assert_button
|
|
211
|
+
# See {Capybara::Node::Matchers#has_button?}
|
|
212
|
+
|
|
213
|
+
##
|
|
214
|
+
# Assert that provided button does not exist
|
|
215
|
+
#
|
|
216
|
+
# @!method refute_button
|
|
217
|
+
# @!method assert_no_button
|
|
218
|
+
# See {Capybara::Node::Matchers#has_no_button?}
|
|
219
|
+
|
|
220
|
+
##
|
|
221
|
+
# Assert that provided field exists
|
|
222
|
+
#
|
|
223
|
+
# @!method assert_field
|
|
224
|
+
# See {Capybara::Node::Matchers#has_field?}
|
|
225
|
+
|
|
226
|
+
##
|
|
227
|
+
# Assert that provided field does not exist
|
|
228
|
+
#
|
|
229
|
+
# @!method refute_field
|
|
230
|
+
# @!method assert_no_field
|
|
231
|
+
# See {Capybara::Node::Matchers#has_no_field?}
|
|
232
|
+
|
|
233
|
+
##
|
|
234
|
+
# Assert that provided checked field exists
|
|
235
|
+
#
|
|
236
|
+
# @!method assert_checked_field
|
|
237
|
+
# See {Capybara::Node::Matchers#has_checked_field?}
|
|
238
|
+
|
|
239
|
+
##
|
|
240
|
+
# Assert that provided checked_field does not exist
|
|
241
|
+
#
|
|
242
|
+
# @!method assert_no_checked_field
|
|
243
|
+
# @!method refute_checked_field
|
|
244
|
+
# See {Capybara::Node::Matchers#has_no_checked_field?}
|
|
245
|
+
|
|
246
|
+
##
|
|
247
|
+
# Assert that provided unchecked field exists
|
|
248
|
+
#
|
|
249
|
+
# @!method assert_unchecked_field
|
|
250
|
+
# See {Capybara::Node::Matchers#has_unchecked_field?}
|
|
251
|
+
|
|
252
|
+
##
|
|
253
|
+
# Assert that provided unchecked field does not exist
|
|
254
|
+
#
|
|
255
|
+
# @!method assert_no_unchecked_field
|
|
256
|
+
# @!method refute_unchecked_field
|
|
257
|
+
# See {Capybara::Node::Matchers#has_no_unchecked_field?}
|
|
258
|
+
|
|
259
|
+
##
|
|
260
|
+
# Assert that provided select exists
|
|
261
|
+
#
|
|
262
|
+
# @!method assert_select
|
|
263
|
+
# See {Capybara::Node::Matchers#has_select?}
|
|
264
|
+
|
|
265
|
+
##
|
|
266
|
+
# Assert that provided select does not exist
|
|
267
|
+
#
|
|
268
|
+
# @!method refute_select
|
|
269
|
+
# @!method assert_no_select
|
|
270
|
+
# See {Capybara::Node::Matchers#has_no_select?}
|
|
271
|
+
|
|
272
|
+
##
|
|
273
|
+
# Assert that provided table exists
|
|
274
|
+
#
|
|
275
|
+
# @!method assert_table
|
|
276
|
+
# See {Capybara::Node::Matchers#has_table?}
|
|
277
|
+
|
|
278
|
+
##
|
|
279
|
+
# Assert that provided table does not exist
|
|
280
|
+
#
|
|
281
|
+
# @!method refute_table
|
|
282
|
+
# @!method assert_no_table
|
|
283
|
+
# See {Capybara::Node::Matchers#has_no_table?}
|
|
284
|
+
|
|
285
|
+
%w[xpath css link button field select table].each do |selector_type|
|
|
286
|
+
define_method "assert_#{selector_type}" do |*args, &optional_filter_block|
|
|
287
|
+
subject, args = determine_subject(args)
|
|
288
|
+
locator, options = extract_locator(args)
|
|
289
|
+
assert_selector(subject, selector_type.to_sym, locator, **options, &optional_filter_block)
|
|
290
|
+
end
|
|
291
|
+
ruby2_keywords "assert_#{selector_type}" if respond_to?(:ruby2_keywords)
|
|
292
|
+
|
|
293
|
+
define_method "assert_no_#{selector_type}" do |*args, &optional_filter_block|
|
|
294
|
+
subject, args = determine_subject(args)
|
|
295
|
+
locator, options = extract_locator(args)
|
|
296
|
+
assert_no_selector(subject, selector_type.to_sym, locator, **options, &optional_filter_block)
|
|
297
|
+
end
|
|
298
|
+
ruby2_keywords "assert_no_#{selector_type}" if respond_to?(:ruby2_keywords)
|
|
299
|
+
alias_method "refute_#{selector_type}", "assert_no_#{selector_type}"
|
|
300
|
+
end
|
|
301
|
+
|
|
302
|
+
%w[checked unchecked].each do |field_type|
|
|
303
|
+
define_method "assert_#{field_type}_field" do |*args, &optional_filter_block|
|
|
304
|
+
subject, args = determine_subject(args)
|
|
305
|
+
locator, options = extract_locator(args)
|
|
306
|
+
assert_selector(subject, :field, locator, **options.merge(field_type.to_sym => true), &optional_filter_block)
|
|
307
|
+
end
|
|
308
|
+
ruby2_keywords "assert_#{field_type}_field" if respond_to?(:ruby2_keywords)
|
|
309
|
+
|
|
310
|
+
define_method "assert_no_#{field_type}_field" do |*args, &optional_filter_block|
|
|
311
|
+
subject, args = determine_subject(args)
|
|
312
|
+
locator, options = extract_locator(args)
|
|
313
|
+
assert_no_selector(
|
|
314
|
+
subject,
|
|
315
|
+
:field,
|
|
316
|
+
locator,
|
|
317
|
+
**options.merge(field_type.to_sym => true),
|
|
318
|
+
&optional_filter_block
|
|
319
|
+
)
|
|
320
|
+
end
|
|
321
|
+
ruby2_keywords "assert_no_#{field_type}_field" if respond_to?(:ruby2_keywords)
|
|
322
|
+
alias_method "refute_#{field_type}_field", "assert_no_#{field_type}_field"
|
|
323
|
+
end
|
|
324
|
+
|
|
325
|
+
##
|
|
326
|
+
# Assert that element matches xpath
|
|
327
|
+
#
|
|
328
|
+
# @!method assert_matches_xpath
|
|
329
|
+
# See {Capybara::Node::Matchers#matches_xpath?}
|
|
330
|
+
|
|
331
|
+
##
|
|
332
|
+
# Assert that element does not match xpath
|
|
333
|
+
#
|
|
334
|
+
# @!method refute_matches_xpath
|
|
335
|
+
# @!method assert_not_matches_xpath
|
|
336
|
+
# See {Capybara::Node::Matchers#not_matches_xpath?}
|
|
337
|
+
|
|
338
|
+
##
|
|
339
|
+
# Assert that element matches css
|
|
340
|
+
#
|
|
341
|
+
# @!method assert_matches_css
|
|
342
|
+
# See {Capybara::Node::Matchers#matches_css?}
|
|
343
|
+
|
|
344
|
+
##
|
|
345
|
+
# Assert that element matches css
|
|
346
|
+
#
|
|
347
|
+
# @!method refute_matches_css
|
|
348
|
+
# @!method assert_not_matches_css
|
|
349
|
+
# See {Capybara::Node::Matchers#not_matches_css?}
|
|
350
|
+
|
|
351
|
+
%w[xpath css].each do |selector_type|
|
|
352
|
+
define_method "assert_matches_#{selector_type}" do |*args, &optional_filter_block|
|
|
353
|
+
subject, args = determine_subject(args)
|
|
354
|
+
assert_matches_selector(subject, selector_type.to_sym, *args, &optional_filter_block)
|
|
355
|
+
end
|
|
356
|
+
ruby2_keywords "assert_matches_#{selector_type}" if respond_to?(:ruby2_keywords)
|
|
357
|
+
|
|
358
|
+
define_method "assert_not_matches_#{selector_type}" do |*args, &optional_filter_block|
|
|
359
|
+
subject, args = determine_subject(args)
|
|
360
|
+
assert_not_matches_selector(subject, selector_type.to_sym, *args, &optional_filter_block)
|
|
361
|
+
end
|
|
362
|
+
ruby2_keywords "assert_not_matches_#{selector_type}" if respond_to?(:ruby2_keywords)
|
|
363
|
+
alias_method "refute_matches_#{selector_type}", "assert_not_matches_#{selector_type}"
|
|
364
|
+
end
|
|
365
|
+
|
|
366
|
+
private
|
|
367
|
+
|
|
368
|
+
def determine_subject(args)
|
|
369
|
+
case args.first
|
|
370
|
+
when Capybara::Session, Capybara::Node::Base, Capybara::Node::Simple
|
|
371
|
+
[args.shift, args]
|
|
372
|
+
when ->(arg) { arg.respond_to?(:to_capybara_node) }
|
|
373
|
+
[args.shift.to_capybara_node, args]
|
|
374
|
+
else
|
|
375
|
+
[page, args]
|
|
376
|
+
end
|
|
377
|
+
end
|
|
378
|
+
|
|
379
|
+
def extract_locator(args)
|
|
380
|
+
locator, options = *args, {}
|
|
381
|
+
locator, options = nil, locator if locator.is_a? Hash
|
|
382
|
+
[locator, options]
|
|
383
|
+
end
|
|
384
|
+
end
|
|
385
|
+
end
|
|
386
|
+
end
|