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_actions.pyi
1 from typing import Any
2
3 from ..utils import keys_to_typing as keys_to_typing
4 from .interaction import KEY as KEY, Interaction as Interaction
5 from .key_input import KeyInput as KeyInput
6
7 class KeyActions(Interaction):
8     source: Any
9     def __init__(self, source: Any | None = ...) -> None: ...
10     def key_down(self, letter): ...
11     def key_up(self, letter): ...
12     def pause(self, duration: int = ...): ...
13     def send_keys(self, text): ...