Class: Capybara::Queries::MatchQuery Private
- Inherits:
-
SelectorQuery
- Object
- BaseQuery
- SelectorQuery
- Capybara::Queries::MatchQuery
- Defined in:
- lib/capybara/queries/match_query.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Constant Summary collapse
- VALID_KEYS =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
[:text, :visible, :exact, :wait]
Constants inherited from SelectorQuery
Constants inherited from BaseQuery
Instance Attribute Summary
Attributes inherited from SelectorQuery
#expression, #find, #locator, #negative, #options, #selector
Attributes inherited from BaseQuery
Instance Method Summary collapse
- #visible ⇒ Object private
Methods inherited from SelectorQuery
#css, #description, #exact?, #initialize, #label, #match, #matches_filters?, #name, #resolve_for, #supports_exact?, #xpath
Methods inherited from BaseQuery
Constructor Details
This class inherits a constructor from Capybara::Queries::SelectorQuery
Instance Method Details
#visible ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
6 7 8 9 10 11 12 |
# File 'lib/capybara/queries/match_query.rb', line 6 def visible if .has_key?(:visible) super else :all end end |