Method: Selenium::WebDriver::SearchContext#find_elements

Defined in:
lib/selenium/webdriver/common/search_context.rb

#find_elements(*args) ⇒ Object

Find all elements matching the given arguments

Raises:

  • (ArgumentError)

See Also:



72
73
74
75
76
77
78
79
# File 'lib/selenium/webdriver/common/search_context.rb', line 72

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, ref
end