Document query visibility options

This commit is contained in:
Vinnie Okada 2014-10-21 23:57:30 -05:00
parent 83154028dc
commit 7b4458336b
1 changed files with 6 additions and 2 deletions

View File

@ -132,8 +132,12 @@ module Capybara
# @param [:css, :xpath] kind The type of selector
# @param [String] locator The selector
# @option options [String, Regexp] text Only find elements which contain this text or match this regexp
# @option options [Boolean] visible Only find elements that are visible on the page. Setting this to false
# finds invisible _and_ visible elements.
# @option options [Boolean, String] visible Only find elements with the specified visibility:
# * true - only finds visible elements.
# * false - finds invisible _and_ visible elements.
# * :all - same as false; finds visible and invisible elements.
# * :hidden - only finds invisible elements.
# * :visible - same as true; only finds visible elements.
# @option options [Integer] count Exact number of matches that are expected to be found
# @option options [Integer] maximum Maximum number of matches that are expected to be found
# @option options [Integer] minimum Minimum number of matches that are expected to be found