# 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