massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / selenium / selenium / webdriver / support / wait.pyi
1 from typing import Any
2
3 from selenium.common.exceptions import NoSuchElementException as NoSuchElementException, TimeoutException as TimeoutException
4
5 POLL_FREQUENCY: float
6 IGNORED_EXCEPTIONS: Any
7
8 class WebDriverWait:
9     def __init__(self, driver, timeout, poll_frequency=..., ignored_exceptions: Any | None = ...) -> None: ...
10     def until(self, method, message: str = ...): ...
11     def until_not(self, method, message: str = ...): ...