module Capybara::SessionMatchers

def _verify_current_path(path, filter_block, **options)

def _verify_current_path(path, filter_block, **options)
  query = Capybara::Queries::CurrentPathQuery.new(path, **options, &filter_block)
  document.synchronize(query.wait) do
    yield(query)
  end
  true
end