Skip to content

Instantly share code, notes, and snippets.

@sw17ch
Created December 8, 2011 19:52
Show Gist options
  • Save sw17ch/1448271 to your computer and use it in GitHub Desktop.
Save sw17ch/1448271 to your computer and use it in GitHub Desktop.
alias orig_method_missing method_missing
def method_missing(sym, *args)
if driver.methods.include?(sym.to_s)
driver.send(sym, *args)
else
orig_method_missing(sym, *args)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment