massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / selenium / selenium / webdriver / remote / mobile.pyi
1 from typing import Any
2
3 from .command import Command as Command
4
5 class Mobile:
6     class ConnectionType:
7         mask: Any
8         def __init__(self, mask) -> None: ...
9         @property
10         def airplane_mode(self): ...
11         @property
12         def wifi(self): ...
13         @property
14         def data(self): ...
15     ALL_NETWORK: Any
16     WIFI_NETWORK: Any
17     DATA_NETWORK: Any
18     AIRPLANE_MODE: Any
19     def __init__(self, driver) -> None: ...
20     @property
21     def network_connection(self): ...
22     def set_network_connection(self, network): ...
23     @property
24     def context(self): ...
25     @context.setter
26     def context(self, new_context) -> None: ...
27     @property
28     def contexts(self): ...