Exception: Selenium::WebDriver::Error::NoSuchDriverError

Inherits:
WebDriverError
  • Object
show all
Defined in:
lib/selenium/webdriver/common/error.rb

Overview

Indicates that driver was not specified and could not be located.

Instance Method Summary collapse

Constructor Details

#initialize(msg = '') ⇒ NoSuchDriverError

Returns a new instance of NoSuchDriverError.



236
237
238
# File 'lib/selenium/webdriver/common/error.rb', line 236

def initialize(msg = '')
  super("#{msg}; #{SUPPORT_MSG} #{ERROR_URL}/driver_location")
end