class Selenium::WebDriver::Error::WebDriverError

Public Class Methods

new(msg = '') click to toggle source
Calls superclass method
# File lib/selenium/webdriver/common/error.rb, line 48
def initialize(msg = '')
  # Remove this conditional when all the error pages have been documented
  super(URLS[class_name] ? "#{msg}; #{SUPPORT_MSG} #{URLS[class_name]}" : msg)
end

Public Instance Methods

class_name() click to toggle source

steep:ignore:start

# File lib/selenium/webdriver/common/error.rb, line 54
def class_name
  self.class.name.split('::')&.last&.to_sym
end