massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / selenium / selenium / common / exceptions.pyi
1 from typing import Any
2
3 class WebDriverException(Exception):
4     msg: Any
5     screen: Any
6     stacktrace: Any
7     def __init__(self, msg: Any | None = ..., screen: Any | None = ..., stacktrace: Any | None = ...) -> None: ...
8
9 class ErrorInResponseException(WebDriverException):
10     response: Any
11     def __init__(self, response, msg) -> None: ...
12
13 class InvalidSwitchToTargetException(WebDriverException): ...
14 class NoSuchFrameException(InvalidSwitchToTargetException): ...
15 class NoSuchWindowException(InvalidSwitchToTargetException): ...
16 class NoSuchElementException(WebDriverException): ...
17 class NoSuchAttributeException(WebDriverException): ...
18 class StaleElementReferenceException(WebDriverException): ...
19 class InvalidElementStateException(WebDriverException): ...
20
21 class UnexpectedAlertPresentException(WebDriverException):
22     alert_text: Any
23     def __init__(
24         self, msg: Any | None = ..., screen: Any | None = ..., stacktrace: Any | None = ..., alert_text: Any | None = ...
25     ) -> None: ...
26
27 class NoAlertPresentException(WebDriverException): ...
28 class ElementNotVisibleException(InvalidElementStateException): ...
29 class ElementNotInteractableException(InvalidElementStateException): ...
30 class ElementNotSelectableException(InvalidElementStateException): ...
31 class InvalidCookieDomainException(WebDriverException): ...
32 class UnableToSetCookieException(WebDriverException): ...
33 class RemoteDriverServerException(WebDriverException): ...
34 class TimeoutException(WebDriverException): ...
35 class MoveTargetOutOfBoundsException(WebDriverException): ...
36 class UnexpectedTagNameException(WebDriverException): ...
37 class InvalidSelectorException(NoSuchElementException): ...
38 class ImeNotAvailableException(WebDriverException): ...
39 class ImeActivationFailedException(WebDriverException): ...
40 class InvalidArgumentException(WebDriverException): ...
41 class JavascriptException(WebDriverException): ...
42 class NoSuchCookieException(WebDriverException): ...
43 class ScreenshotException(WebDriverException): ...
44 class ElementClickInterceptedException(WebDriverException): ...
45 class InsecureCertificateException(WebDriverException): ...
46 class InvalidCoordinatesException(WebDriverException): ...
47 class InvalidSessionIdException(WebDriverException): ...
48 class SessionNotCreatedException(WebDriverException): ...
49 class UnknownMethodException(WebDriverException): ...