massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / selenium / selenium / webdriver / remote / remote_connection.pyi
1 from typing import Any
2
3 from .command import Command as Command
4 from .errorhandler import ErrorCode as ErrorCode
5
6 LOGGER: Any
7
8 class RemoteConnection:
9     @classmethod
10     def get_timeout(cls): ...
11     @classmethod
12     def set_timeout(cls, timeout) -> None: ...
13     @classmethod
14     def reset_timeout(cls) -> None: ...
15     @classmethod
16     def get_remote_connection_headers(cls, parsed_url, keep_alive: bool = ...): ...
17     keep_alive: Any
18     def __init__(self, remote_server_addr, keep_alive: bool = ..., resolve_ip: bool = ...) -> None: ...
19     def execute(self, command, params): ...