Method: Gless::Browser#method_missing
- Defined in:
- lib/gless/browser.rb
#method_missing(m, *args, &block) ⇒ Object
Pass everything else through to the Watir::Browser underneath.
73 74 75 |
# File 'lib/gless/browser.rb', line 73 def method_missing(m, *args, &block) @browser.send(m, *args, &block) end |