massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / selenium / selenium / webdriver / remote / switch_to.pyi
1 from selenium.common.exceptions import (
2     NoSuchElementException as NoSuchElementException,
3     NoSuchFrameException as NoSuchFrameException,
4     NoSuchWindowException as NoSuchWindowException,
5 )
6 from selenium.webdriver.common.alert import Alert as Alert
7 from selenium.webdriver.common.by import By as By
8
9 from .command import Command as Command
10
11 basestring = str
12
13 class SwitchTo:
14     def __init__(self, driver) -> None: ...
15     @property
16     def active_element(self): ...
17     @property
18     def alert(self): ...
19     def default_content(self) -> None: ...
20     def frame(self, frame_reference) -> None: ...
21     def parent_frame(self) -> None: ...
22     def window(self, window_name) -> None: ...