Module: Selenium::WebDriver::Error
- Defined in:
- lib/selenium/webdriver/common/error.rb,
lib/selenium/webdriver/remote/server_error.rb
Defined Under Namespace
Classes: DetachedShadowRootError, ElementClickInterceptedError, ElementNotInteractableError, InsecureCertificateError, InvalidArgumentError, InvalidCookieDomainError, InvalidElementStateError, InvalidSelectorError, InvalidSessionIdError, JavascriptError, MoveTargetOutOfBoundsError, NoSuchAlertError, NoSuchCookieError, NoSuchDriverError, NoSuchElementError, NoSuchFrameError, NoSuchShadowRootError, NoSuchWindowError, ScriptTimeoutError, ServerError, SessionNotCreatedError, StaleElementReferenceError, TimeoutError, UnableToCaptureScreenError, UnableToSetCookieError, UnexpectedAlertOpenError, UnknownCommandError, UnknownError, UnknownMethodError, UnsupportedOperationError, WebDriverError
Constant Summary collapse
- SUPPORT_MSG =
'For documentation on this error, please visit:'
- ERROR_URL =
'https://www.selenium.dev/documentation/webdriver/troubleshooting/errors'
- URLS =
{ NoSuchElementError: "#{ERROR_URL}#no-such-element-exception", StaleElementReferenceError: "#{ERROR_URL}#stale-element-reference-exception", InvalidSelectorError: "#{ERROR_URL}#invalid-selector-exception", NoSuchDriverError: "#{ERROR_URL}/driver_location" }.freeze
Class Method Summary collapse
-
.for_error(error) ⇒ Object
Returns exception from its string representation.
Class Method Details
.for_error(error) ⇒ Object
Returns exception from its string representation.
28 29 30 31 32 33 34 35 |
# File 'lib/selenium/webdriver/common/error.rb', line 28 def self.for_error(error) return if error.nil? klass_name = error.split.map(&:capitalize).join.sub(/Error$/, '') const_get(:"#{klass_name}Error", false) rescue NameError WebDriverError end |