From 245cd1ca2fb62149b87c984326d57ea57b0fa9d9 Mon Sep 17 00:00:00 2001 From: LawyZheng Date: Mon, 16 Dec 2024 23:21:08 +0800 Subject: [PATCH] fix hack input trigger (#1392) --- skyvern/webeye/actions/handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skyvern/webeye/actions/handler.py b/skyvern/webeye/actions/handler.py index 07f3ceb5..d45e85be 100644 --- a/skyvern/webeye/actions/handler.py +++ b/skyvern/webeye/actions/handler.py @@ -660,7 +660,7 @@ async def handle_input_text_action( return [ActionSuccess()] finally: # HACK: force to finish missing auto completion input - if auto_complete_hacky_flag: + if auto_complete_hacky_flag and not await skyvern_element.is_raw_input(): LOG.debug( "Trigger input-selection hack, pressing Tab to choose one", action=action,