Module: Playwright::EventListenerInterface
- Defined in:
- lib/playwright/event_emitter.rb
Instance Method Summary collapse
Instance Method Details
#off(event, callback) ⇒ Object
25 26 27 |
# File 'lib/playwright/event_emitter.rb', line 25 def off(event, callback) raise NotImplementedError.new('NOT IMPLEMENTED') end |
#on(event, callback) ⇒ Object
21 22 23 |
# File 'lib/playwright/event_emitter.rb', line 21 def on(event, callback) raise NotImplementedError.new('NOT IMPLEMENTED') end |
#once(event, callback) ⇒ Object
29 30 31 |
# File 'lib/playwright/event_emitter.rb', line 29 def once(event, callback) raise NotImplementedError.new('NOT IMPLEMENTED') end |