class Selenium::WebDriver::Error::WebDriverError

def class_name

steep:ignore:start
def class_name
  self.class.name.split('::')&.last&.to_sym
end

def initialize(msg = '')

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