pytoolbox.selenium.exceptions module¶
- exception pytoolbox.selenium.exceptions.ElementClickInterceptedException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionThe Element Click command could not be completed because the element receiving the events is obscuring the element that was requested to be clicked.
- exception pytoolbox.selenium.exceptions.ElementNotInteractableException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
InvalidElementStateExceptionThrown when an element is present in the DOM but interactions with that element will hit another element due to paint order.
- exception pytoolbox.selenium.exceptions.ElementNotSelectableException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
InvalidElementStateExceptionThrown when trying to select an unselectable element.
For example, selecting a ‘script’ element.
- exception pytoolbox.selenium.exceptions.ElementNotVisibleException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
InvalidElementStateExceptionThrown 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.
- exception pytoolbox.selenium.exceptions.ImeActivationFailedException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionThrown when activating an IME engine has failed.
- exception pytoolbox.selenium.exceptions.ImeNotAvailableException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionThrown 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.
- exception pytoolbox.selenium.exceptions.InsecureCertificateException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionNavigation caused the user agent to hit a certificate warning, which is usually the result of an expired or invalid TLS certificate.
- exception pytoolbox.selenium.exceptions.InvalidArgumentException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionThe arguments passed to a command are either invalid or malformed.
- exception pytoolbox.selenium.exceptions.InvalidCookieDomainException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionThrown when attempting to add a cookie under a different domain than the current URL.
- exception pytoolbox.selenium.exceptions.InvalidCoordinatesException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionThe coordinates provided to an interaction’s operation are invalid.
- exception pytoolbox.selenium.exceptions.InvalidElementStateException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionThrown 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.
- exception pytoolbox.selenium.exceptions.InvalidSelectorException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionThrown 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)”).
- exception pytoolbox.selenium.exceptions.InvalidSessionIdException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionOccurs 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.
- exception pytoolbox.selenium.exceptions.InvalidSwitchToTargetException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionThrown when frame or window target to be switched doesn’t exist.
- exception pytoolbox.selenium.exceptions.JavascriptException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionAn error occurred while executing JavaScript supplied by the user.
- exception pytoolbox.selenium.exceptions.MoveTargetOutOfBoundsException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionThrown when the target provided to the ActionsChains move() method is invalid, i.e. out of document.
- exception pytoolbox.selenium.exceptions.NoAlertPresentException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionThrown 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.
- exception pytoolbox.selenium.exceptions.NoSuchAttributeException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionThrown 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)
- exception pytoolbox.selenium.exceptions.NoSuchCookieException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionNo cookie matching the given path name was found amongst the associated cookies of the current browsing context’s active document.
- exception pytoolbox.selenium.exceptions.NoSuchDriverException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionRaised when driver is not specified and cannot be located.
- exception pytoolbox.selenium.exceptions.NoSuchElementException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionThrown 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.
- exception pytoolbox.selenium.exceptions.NoSuchFrameException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
InvalidSwitchToTargetExceptionThrown when frame target to be switched doesn’t exist.
- exception pytoolbox.selenium.exceptions.NoSuchShadowRootException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionThrown when trying to access the shadow root of an element when it does not have a shadow root attached.
- exception pytoolbox.selenium.exceptions.NoSuchSpecializedElementException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
NoSuchElementException
- exception pytoolbox.selenium.exceptions.NoSuchWindowException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
InvalidSwitchToTargetExceptionThrown 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
- exception pytoolbox.selenium.exceptions.ScreenshotException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionA screen capture was made impossible.
- exception pytoolbox.selenium.exceptions.SessionNotCreatedException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionA new session could not be created.
- exception pytoolbox.selenium.exceptions.StaleElementReferenceException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionThrown 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.
- exception pytoolbox.selenium.exceptions.TimeoutException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionThrown when a command does not complete in enough time.
- exception pytoolbox.selenium.exceptions.UnableToSetCookieException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionThrown when a driver fails to set a cookie.
- exception pytoolbox.selenium.exceptions.UnexpectedAlertPresentException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None, alert_text: str | None = None)[source]¶
Bases:
WebDriverExceptionThrown when an unexpected alert has appeared.
Usually raised when an unexpected modal is blocking the webdriver from executing commands.
- exception pytoolbox.selenium.exceptions.UnexpectedTagNameException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionThrown when a support class did not get an expected web element.
- exception pytoolbox.selenium.exceptions.UnknownMethodException(msg: str | None = None, screen: str | None = None, stacktrace: Sequence[str] | None = None)[source]¶
Bases:
WebDriverExceptionThe requested command matched a known URL but did not match any methods for that URL.