Delegates to @selenium on method missing
# 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
Overrides default open method to actually delegates to @selenium
# File lib/selenium/client/selenium_helper.rb, line 11 def open(url) @selenium.open url end
Generated with the Darkfish Rdoc Generator 2.