Exception: Playwright::TimeoutError

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

Instance Method Summary collapse

Methods inherited from Error

parse

Constructor Details

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

Returns a new instance of TimeoutError.



37
38
39
# File 'lib/playwright/errors.rb', line 37

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