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.



22
23
24
# File 'lib/selenium/webdriver/support/block_event_listener.rb', line 22

def initialize(callback)
  @callback = callback
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(meth, *args) ⇒ Object



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

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