Class: Capybara::Queries::AncestorQuery Private
- Inherits:
-
SelectorQuery
- Object
- BaseQuery
- SelectorQuery
- Capybara::Queries::AncestorQuery
- Defined in:
- lib/capybara/queries/ancestor_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
Constants inherited from SelectorQuery
SelectorQuery::VALID_KEYS, SelectorQuery::VALID_MATCH
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
- #description ⇒ Object private
- #resolve_for(node, exact = nil) ⇒ Object private
Methods inherited from SelectorQuery
#css, #exact?, #initialize, #label, #match, #matches_filters?, #name, #supports_exact?, #visible, #xpath
Methods inherited from BaseQuery
#expects_none?, #failure_message, #initialize, #matches_count?, #negative_failure_message, #wait, wait
Constructor Details
This class inherits a constructor from Capybara::Queries::SelectorQuery
Instance Method Details
#description ⇒ 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.
15 16 17 18 19 20 |
# File 'lib/capybara/queries/ancestor_query.rb', line 15 def description child_query = @child_node&.instance_variable_get(:@query) desc = super desc += " that is an ancestor of #{child_query.description}" if child_query desc end |
#resolve_for(node, exact = nil) ⇒ 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.
7 8 9 10 11 12 13 |
# File 'lib/capybara/queries/ancestor_query.rb', line 7 def resolve_for(node, exact = nil) @child_node = node node.synchronize do match_results = super(node.session.current_scope, exact) node.all(:xpath, XPath.ancestor) { |el| match_results.include?(el) } end end |