# File lib/selenium/client/selenium_helper.rb, line 26
      def method_missing(method_name, *args)
        return super unless @selenium.respond_to?(method_name)

        @selenium.send(method_name, *args)
      end