Exception: Playwright::TimeoutError

Inherits:
Error
  • Object
show all
Defined in:
lib/playwright/errors.rb

Instance Attribute Summary

Attributes inherited from Error

#message, #name, #stack

Instance Method Summary collapse

Methods inherited from Error

#log=, parse

Constructor Details

#initialize(message:, stack: []) ⇒ TimeoutError

Returns a new instance of TimeoutError.



50
51
52
# File 'lib/playwright/errors.rb', line 50

def initialize(message:, stack: [])
  super(name: 'TimeoutError', message: message, stack: stack)
end