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, location = nil) ⇒ WebError

Returns a new instance of WebError.



63
64
65
66
67
# File 'lib/playwright/errors.rb', line 63

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

Instance Attribute Details

#errorObject (readonly)

Returns the value of attribute error.



69
70
71
# File 'lib/playwright/errors.rb', line 69

def error
  @error
end

#locationObject (readonly)

Returns the value of attribute location.



69
70
71
# File 'lib/playwright/errors.rb', line 69

def location
  @location
end

#pageObject (readonly)

Returns the value of attribute page.



69
70
71
# File 'lib/playwright/errors.rb', line 69

def page
  @page
end