module Selenium::WebDriver::SearchContext

def find_elements(*args)

def find_elements(*args)
  how, what = extract_args(args)
  by = FINDERS[how.to_sym]
  raise ArgumentError, "cannot find elements by #{how.inspect}" unless by
  bridge.find_elements_by by, what.to_s, ref
rescue Selenium::WebDriver::Error::TimeOutError
  # Implicit Wait times out in Edge
  []
end