feat: keydown up handler

This commit is contained in:
karishmas6
2024-06-08 23:02:28 +05:30
parent 4514a3a4af
commit cb5407179e

View File

@@ -233,3 +233,9 @@ const onKeyup = async (keyboardInput: KeyboardInput) => {
await handleWrapper(handleKeyup, keyboardInput);
}
const handleKeyup = async (generator: WorkflowGenerator, page: Page, key: string) => {
await page.keyboard.up(key);
logger.log('debug', `Key ${key} unpressed`);
};