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
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/selenium/selenium/webdriver/common/actions/key_actions.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/selenium/selenium/webdriver/common/actions/key_actions.pyi
new file mode 100644 (file)
index 0000000..b5412a6
--- /dev/null
@@ -0,0 +1,13 @@
+from typing import Any
+
+from ..utils import keys_to_typing as keys_to_typing
+from .interaction import KEY as KEY, Interaction as Interaction
+from .key_input import KeyInput as KeyInput
+
+class KeyActions(Interaction):
+    source: Any
+    def __init__(self, source: Any | None = ...) -> None: ...
+    def key_down(self, letter): ...
+    def key_up(self, letter): ...
+    def pause(self, duration: int = ...): ...
+    def send_keys(self, text): ...