Exception: Playwright::TimeoutError

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

Instance Attribute Summary

Attributes inherited from Error

#details, #message, #name, #raw_log, #stack

Instance Method Summary collapse

Methods inherited from Error

#log=, parse

Constructor Details

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

Returns a new instance of TimeoutError.



53
54
55
# File 'lib/playwright/errors.rb', line 53

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