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 / key_input.pyi
1 from typing import Any
2
3 from . import interaction as interaction
4 from .input_device import InputDevice as InputDevice
5 from .interaction import Interaction as Interaction, Pause as Pause
6
7 class KeyInput(InputDevice):
8     name: Any
9     type: Any
10     def __init__(self, name) -> None: ...
11     def encode(self): ...
12     def create_key_down(self, key) -> None: ...
13     def create_key_up(self, key) -> None: ...
14     def create_pause(self, pause_duration: int = ...) -> None: ...
15
16 class TypingInteraction(Interaction):
17     type: Any
18     key: Any
19     def __init__(self, source, type_, key) -> None: ...
20     def encode(self): ...