# File lib/selenium/webdriver/common/search_context.rb, line 57
      def find_elements(*args)
        how, what = extract_args(args)

        unless by = FINDERS[how.to_sym]
          raise ArgumentError, "cannot find elements by #{how.inspect}"
        end

        meth = "findElementsBy#{by}"
        what = what.to_s

        bridge.send meth, ref, what
      end