Class: Playwright::WebError

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(error, page) ⇒ WebError

Returns a new instance of WebError.



45
46
47
48
# File 'lib/playwright/errors.rb', line 45

def initialize(error, page)
  @error = error
  @page = PlaywrightApi.wrap(page)
end

Instance Attribute Details

#errorObject (readonly)

Returns the value of attribute error.



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

def error
  @error
end

#pageObject (readonly)

Returns the value of attribute page.



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

def page
  @page
end