1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00

documentation fixes

This commit is contained in:
Thomas Walpole 2018-10-27 10:03:37 -07:00
parent 084dfc5e70
commit 646db862e7
2 changed files with 1 additions and 2 deletions

View file

@ -37,7 +37,6 @@ module Capybara
# + If you need to check for existence of a class name that starts with ! then prefix with !!
# + ```class:['a', '!b', '!!!c'] # limit to elements with class 'a' and '!c' but not class 'b'```
# @option options [Boolean] exact Control whether `is` expressions in the given XPath match exactly or partially
# @option options [Integer, false] wait (Capybara.default_max_wait_time) The time to wait for matching elements to become available
# @option options [Symbol] match The matching strategy to use.
#
# @return [Capybara::Node::Element] The found element

View file

@ -6,7 +6,7 @@ module Capybara
# Asserts that the page has the given path.
# By default, if passed a full url this will compare against the full url,
# if passed a path only the path+query portion will be compared, if passed a regexp
# the comparison will depend on the :url option
# the comparison will depend on the :url option (path+query by default)
#
# @!macro current_path_query_params
# @overload $0(string, **options)