class Capybara::RSpecMatchers::Matchers::HaveAllSelectors

def description = 'have all selectors'

def description = 'have all selectors'

def does_not_match?(_actual)

def does_not_match?(_actual)
  raise ArgumentError, 'The have_all_selectors matcher does not support use with not_to/should_not'
end

def element_matches?(el)

def element_matches?(el)
  el.assert_all_of_selectors(*@args, **session_query_options, &@filter_block)
end