Class: Selenium::WebDriver::Support::BlockEventListener

Inherits:
Object
  • Object
show all
Defined in:
lib/selenium/webdriver/support/block_event_listener.rb

Instance Method Summary collapse

Constructor Details

#initialize(callback) ⇒ BlockEventListener

Returns a new instance of BlockEventListener.



25
26
27
# File 'lib/selenium/webdriver/support/block_event_listener.rb', line 25

def initialize(callback)
  @callback = callback
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(meth, *args, &blk) ⇒ Object



29
30
31
# File 'lib/selenium/webdriver/support/block_event_listener.rb', line 29

def method_missing(meth, *args, &blk)
  @callback.call meth, *args
end