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

7 lines
287 B
Ruby

# frozen_string_literal: true
require 'capybara/queries/selector_query'
module Capybara
# @deprecated This class and its methods are not supposed to be used by users of Capybara's public API.
# It may be removed in future versions of Capybara.
Query = Queries::SelectorQuery
end