selenium.common.exceptions

Exceptions that may happen in all the webdriver code.

Exceptions

ElementClickInterceptedException(msg, …) The Element Click command could not be completed because the element receiving the events is obscuring the element that was requested to be clicked.
ElementNotInteractableException(msg, screen, …) Thrown when an element is present in the DOM but interactions with that element will hit another element due to paint order.
ElementNotSelectableException(msg, screen, …) Thrown when trying to select an unselectable element.
ElementNotVisibleException(msg, screen, …) Thrown when an element is present on the DOM, but it is not visible, and so is not able to be interacted with.
ImeActivationFailedException(msg, screen, …) Thrown when activating an IME engine has failed.
ImeNotAvailableException(msg, screen, stacktrace) Thrown when IME support is not available.
InsecureCertificateException(msg, screen, …) Navigation caused the user agent to hit a certificate warning, which is usually the result of an expired or invalid TLS certificate.
InvalidArgumentException(msg, screen, stacktrace) The arguments passed to a command are either invalid or malformed.
InvalidCookieDomainException(msg, screen, …) Thrown when attempting to add a cookie under a different domain than the current URL.
InvalidCoordinatesException(msg, screen, …) The coordinates provided to an interaction’s operation are invalid.
InvalidElementStateException(msg, screen, …) Thrown when a command could not be completed because the element is in an invalid state.
InvalidSelectorException(msg, screen, stacktrace) Thrown when the selector which is used to find an element does not return a WebElement.
InvalidSessionIdException(msg, screen, …) Occurs if the given session id is not in the list of active sessions, meaning the session either does not exist or that it’s not active.
InvalidSwitchToTargetException(msg, screen, …) Thrown when frame or window target to be switched doesn’t exist.
JavascriptException(msg, screen, stacktrace) An error occurred while executing JavaScript supplied by the user.
MoveTargetOutOfBoundsException(msg, screen, …) Thrown when the target provided to the ActionsChains move() method is invalid, i.e.
NoAlertPresentException(msg, screen, stacktrace) Thrown when switching to no presented alert.
NoSuchAttributeException(msg, screen, stacktrace) Thrown when the attribute of element could not be found.
NoSuchCookieException(msg, screen, stacktrace) No cookie matching the given path name was found amongst the associated cookies of the current browsing context’s active document.
NoSuchElementException(msg, screen, stacktrace) Thrown when element could not be found.
NoSuchFrameException(msg, screen, stacktrace) Thrown when frame target to be switched doesn’t exist.
NoSuchShadowRootException(msg, screen, …) Thrown when trying to access the shadow root of an element when it does not have a shadow root attached.
NoSuchWindowException(msg, screen, stacktrace) Thrown when window target to be switched doesn’t exist.
ScreenshotException(msg, screen, stacktrace) A screen capture was made impossible.
SeleniumManagerException
SessionNotCreatedException(msg, screen, …) A new session could not be created.
StaleElementReferenceException(msg, screen, …) Thrown when a reference to an element is now “stale”.
TimeoutException(msg, screen, stacktrace) Thrown when a command does not complete in enough time.
UnableToSetCookieException(msg, screen, …) Thrown when a driver fails to set a cookie.
UnexpectedAlertPresentException(msg, screen, …) Thrown when an unexpected alert has appeared.
UnexpectedTagNameException(msg, screen, …) Thrown when a support class did not get an expected web element.
UnknownMethodException(msg, screen, stacktrace) The requested command matched a known URL but did not match any methods for that URL.
WebDriverException(msg, screen, stacktrace) Base webdriver exception.
exception selenium.common.exceptions.ElementClickInterceptedException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

The Element Click command could not be completed because the element receiving the events is obscuring the element that was requested to be clicked.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.ElementNotInteractableException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when an element is present in the DOM but interactions with that element will hit another element due to paint order.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.ElementNotSelectableException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when trying to select an unselectable element.

For example, selecting a ‘script’ element.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.ElementNotVisibleException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when an element is present on the DOM, but it is not visible, and so is not able to be interacted with.

Most commonly encountered when trying to click or read text of an element that is hidden from view.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.ImeActivationFailedException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when activating an IME engine has failed.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.ImeNotAvailableException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when IME support is not available.

This exception is thrown for every IME-related method call if IME support is not available on the machine.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.InsecureCertificateException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Navigation caused the user agent to hit a certificate warning, which is usually the result of an expired or invalid TLS certificate.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.InvalidArgumentException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

The arguments passed to a command are either invalid or malformed.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.InvalidCookieDomainException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when attempting to add a cookie under a different domain than the current URL.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.InvalidCoordinatesException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

The coordinates provided to an interaction’s operation are invalid.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.InvalidElementStateException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when a command could not be completed because the element is in an invalid state.

This can be caused by attempting to clear an element that isn’t both editable and resettable.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.InvalidSelectorException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when the selector which is used to find an element does not return a WebElement.

Currently this only happens when the selector is an xpath expression and it is either syntactically invalid (i.e. it is not a xpath expression) or the expression does not select WebElements (e.g. “count(//input)”).

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.InvalidSessionIdException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Occurs if the given session id is not in the list of active sessions, meaning the session either does not exist or that it’s not active.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.InvalidSwitchToTargetException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when frame or window target to be switched doesn’t exist.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.JavascriptException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

An error occurred while executing JavaScript supplied by the user.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.MoveTargetOutOfBoundsException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when the target provided to the ActionsChains move() method is invalid, i.e. out of document.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.NoAlertPresentException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when switching to no presented alert.

This can be caused by calling an operation on the Alert() class when an alert is not yet on the screen.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.NoSuchAttributeException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when the attribute of element could not be found.

You may want to check if the attribute exists in the particular browser you are testing against. Some browsers may have different property names for the same property. (IE8’s .innerText vs. Firefox .textContent)

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.NoSuchCookieException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

No cookie matching the given path name was found amongst the associated cookies of the current browsing context’s active document.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.NoSuchDriverException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Raised when driver is not specified and cannot be located.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.NoSuchElementException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when element could not be found.

If you encounter this exception, you may want to check the following:
  • Check your selector used in your find_by…
  • Element may not yet be on the screen at the time of the find operation, (webpage is still loading) see selenium.webdriver.support.wait.WebDriverWait() for how to write a wait wrapper to wait for an element to appear.
args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.NoSuchFrameException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when frame target to be switched doesn’t exist.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.NoSuchShadowRootException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when trying to access the shadow root of an element when it does not have a shadow root attached.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.NoSuchWindowException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when window target to be switched doesn’t exist.

To find the current set of active window handles, you can get a list of the active window handles in the following way:

print driver.window_handles
args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.ScreenshotException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

A screen capture was made impossible.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.SessionNotCreatedException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

A new session could not be created.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.StaleElementReferenceException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when a reference to an element is now “stale”.

Stale means the element no longer appears on the DOM of the page.

Possible causes of StaleElementReferenceException include, but not limited to:
  • You are no longer on the same page, or the page may have refreshed since the element was located.
  • The element may have been removed and re-added to the screen, since it was located. Such as an element being relocated. This can happen typically with a javascript framework when values are updated and the node is rebuilt.
  • Element may have been inside an iframe or another context which was refreshed.
args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.TimeoutException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when a command does not complete in enough time.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.UnableToSetCookieException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when a driver fails to set a cookie.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.UnexpectedAlertPresentException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None, alert_text: Optional[str] = None)[source]

Thrown when an unexpected alert has appeared.

Usually raised when an unexpected modal is blocking the webdriver from executing commands.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.UnexpectedTagNameException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Thrown when a support class did not get an expected web element.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.UnknownMethodException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

The requested command matched a known URL but did not match any methods for that URL.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception selenium.common.exceptions.WebDriverException(msg: Optional[str] = None, screen: Optional[str] = None, stacktrace: Optional[Sequence[str]] = None)[source]

Base webdriver exception.

args
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.