class Selenium::WebDriver::Error::WebDriverError
Public Class Methods
Source
# 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
Calls superclass method
Public Instance Methods
Source
# File lib/selenium/webdriver/common/error.rb, line 54 def class_name self.class.name.split('::')&.last&.to_sym end
steep:ignore:start