|
15 | 15 | # specific language governing permissions and limitations |
16 | 16 | # under the License. |
17 | 17 |
|
18 | | -from .exceptions import DetachedShadowRootException |
19 | | -from .exceptions import ElementClickInterceptedException |
20 | | -from .exceptions import ElementNotInteractableException |
21 | | -from .exceptions import ElementNotSelectableException |
22 | | -from .exceptions import ElementNotVisibleException |
23 | | -from .exceptions import ImeActivationFailedException |
24 | | -from .exceptions import ImeNotAvailableException |
25 | | -from .exceptions import InsecureCertificateException |
26 | | -from .exceptions import InvalidArgumentException |
27 | | -from .exceptions import InvalidCookieDomainException |
28 | | -from .exceptions import InvalidCoordinatesException |
29 | | -from .exceptions import InvalidElementStateException |
30 | | -from .exceptions import InvalidSelectorException |
31 | | -from .exceptions import InvalidSessionIdException |
32 | | -from .exceptions import InvalidSwitchToTargetException |
33 | | -from .exceptions import JavascriptException |
34 | | -from .exceptions import MoveTargetOutOfBoundsException |
35 | | -from .exceptions import NoAlertPresentException |
36 | | -from .exceptions import NoSuchAttributeException |
37 | | -from .exceptions import NoSuchCookieException |
38 | | -from .exceptions import NoSuchDriverException |
39 | | -from .exceptions import NoSuchElementException |
40 | | -from .exceptions import NoSuchFrameException |
41 | | -from .exceptions import NoSuchShadowRootException |
42 | | -from .exceptions import NoSuchWindowException |
43 | | -from .exceptions import ScreenshotException |
44 | | -from .exceptions import SessionNotCreatedException |
45 | | -from .exceptions import StaleElementReferenceException |
46 | | -from .exceptions import TimeoutException |
47 | | -from .exceptions import UnableToSetCookieException |
48 | | -from .exceptions import UnexpectedAlertPresentException |
49 | | -from .exceptions import UnexpectedTagNameException |
50 | | -from .exceptions import UnknownMethodException |
51 | | -from .exceptions import WebDriverException |
| 18 | +from .exceptions import ( |
| 19 | + DetachedShadowRootException, |
| 20 | + ElementClickInterceptedException, |
| 21 | + ElementNotInteractableException, |
| 22 | + ElementNotSelectableException, |
| 23 | + ElementNotVisibleException, |
| 24 | + ImeActivationFailedException, |
| 25 | + ImeNotAvailableException, |
| 26 | + InsecureCertificateException, |
| 27 | + InvalidArgumentException, |
| 28 | + InvalidCookieDomainException, |
| 29 | + InvalidCoordinatesException, |
| 30 | + InvalidElementStateException, |
| 31 | + InvalidSelectorException, |
| 32 | + InvalidSessionIdException, |
| 33 | + InvalidSwitchToTargetException, |
| 34 | + JavascriptException, |
| 35 | + MoveTargetOutOfBoundsException, |
| 36 | + NoAlertPresentException, |
| 37 | + NoSuchAttributeException, |
| 38 | + NoSuchCookieException, |
| 39 | + NoSuchDriverException, |
| 40 | + NoSuchElementException, |
| 41 | + NoSuchFrameException, |
| 42 | + NoSuchShadowRootException, |
| 43 | + NoSuchWindowException, |
| 44 | + ScreenshotException, |
| 45 | + SessionNotCreatedException, |
| 46 | + StaleElementReferenceException, |
| 47 | + TimeoutException, |
| 48 | + UnableToSetCookieException, |
| 49 | + UnexpectedAlertPresentException, |
| 50 | + UnexpectedTagNameException, |
| 51 | + UnknownMethodException, |
| 52 | + WebDriverException, |
| 53 | +) |
52 | 54 |
|
53 | 55 | __all__ = [ |
54 | | - "WebDriverException", |
55 | | - "InvalidSwitchToTargetException", |
56 | | - "NoSuchFrameException", |
57 | | - "NoSuchWindowException", |
58 | | - "NoSuchElementException", |
59 | | - "NoSuchAttributeException", |
60 | | - "NoSuchDriverException", |
61 | | - "NoSuchShadowRootException", |
62 | | - "StaleElementReferenceException", |
63 | | - "InvalidElementStateException", |
64 | | - "UnexpectedAlertPresentException", |
65 | | - "NoAlertPresentException", |
66 | | - "ElementNotVisibleException", |
| 56 | + "DetachedShadowRootException", |
| 57 | + "ElementClickInterceptedException", |
67 | 58 | "ElementNotInteractableException", |
68 | 59 | "ElementNotSelectableException", |
69 | | - "InvalidCookieDomainException", |
70 | | - "UnableToSetCookieException", |
71 | | - "TimeoutException", |
72 | | - "MoveTargetOutOfBoundsException", |
73 | | - "UnexpectedTagNameException", |
74 | | - "InvalidSelectorException", |
75 | | - "ImeNotAvailableException", |
| 60 | + "ElementNotVisibleException", |
76 | 61 | "ImeActivationFailedException", |
| 62 | + "ImeNotAvailableException", |
| 63 | + "InsecureCertificateException", |
77 | 64 | "InvalidArgumentException", |
| 65 | + "InvalidCookieDomainException", |
| 66 | + "InvalidCoordinatesException", |
| 67 | + "InvalidElementStateException", |
| 68 | + "InvalidSelectorException", |
| 69 | + "InvalidSessionIdException", |
| 70 | + "InvalidSwitchToTargetException", |
78 | 71 | "JavascriptException", |
| 72 | + "MoveTargetOutOfBoundsException", |
| 73 | + "NoAlertPresentException", |
| 74 | + "NoSuchAttributeException", |
79 | 75 | "NoSuchCookieException", |
| 76 | + "NoSuchDriverException", |
| 77 | + "NoSuchElementException", |
| 78 | + "NoSuchFrameException", |
| 79 | + "NoSuchShadowRootException", |
| 80 | + "NoSuchWindowException", |
80 | 81 | "ScreenshotException", |
81 | | - "ElementClickInterceptedException", |
82 | | - "InsecureCertificateException", |
83 | | - "InvalidCoordinatesException", |
84 | | - "InvalidSessionIdException", |
85 | 82 | "SessionNotCreatedException", |
| 83 | + "StaleElementReferenceException", |
| 84 | + "TimeoutException", |
| 85 | + "UnableToSetCookieException", |
| 86 | + "UnexpectedAlertPresentException", |
| 87 | + "UnexpectedTagNameException", |
86 | 88 | "UnknownMethodException", |
87 | | - "DetachedShadowRootException", |
| 89 | + "WebDriverException", |
88 | 90 | ] |
0 commit comments