teamcapybara--capybara/lib/capybara/queries/ancestor_query.rb

26 lines
672 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Capybara
module Queries
class AncestorQuery < MatchQuery
# @api private
def resolve_for(node, exact = nil)
@resolved_node = node
node.synchronize do
match_results = super(node.session.current_scope, exact)
node.all(:xpath, XPath.ancestor) do |el|
match_results.include?(el)
end
end
end
def description
desc = super
if @resolved_node && (child_query = @resolved_node.instance_variable_get(:@query))
desc += " that is an ancestor of #{child_query.description}"
end
desc
end
end
end
end