Delegates to @selenium on method missing
[Source]
# File lib/selenium/client/selenium_helper.rb, line 26 26: def method_missing(method_name, *args) 27: return super unless @selenium.respond_to?(method_name) 28: 29: @selenium.send(method_name, *args) 30: end
Overrides default open method to actually delegates to @selenium
# File lib/selenium/client/selenium_helper.rb, line 11 11: def open(url) 12: @selenium.open url 13: end
Overrides default select method to actually delegates to @selenium
# File lib/selenium/client/selenium_helper.rb, line 21 21: def select(input_locator, option_locator) 22: @selenium.select input_locator, option_locator 23: end
Overrides default type method to actually delegates to @selenium
# File lib/selenium/client/selenium_helper.rb, line 16 16: def type(locator, value) 17: @selenium.type locator, value 18: end
[Validate]