massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / selenium / selenium / webdriver / common / actions / pointer_input.pyi
1 from typing import Any
2
3 from .input_device import InputDevice as InputDevice
4 from .interaction import POINTER as POINTER, POINTER_KINDS as POINTER_KINDS
5
6 class PointerInput(InputDevice):
7     DEFAULT_MOVE_DURATION: int
8     type: Any
9     kind: Any
10     name: Any
11     def __init__(self, kind, name) -> None: ...
12     def create_pointer_move(self, duration=..., x: Any | None = ..., y: Any | None = ..., origin: Any | None = ...) -> None: ...
13     def create_pointer_down(self, button) -> None: ...
14     def create_pointer_up(self, button) -> None: ...
15     def create_pointer_cancel(self) -> None: ...
16     def create_pause(self, pause_duration) -> None: ...  # type: ignore
17     def encode(self): ...