From 5a3691e0dc89bc49c3444af614ac14538635e9c2 Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Wed, 30 Apr 2025 18:49:07 +0800 Subject: [PATCH] action handlers back - SOLVE_CAPTCHA, CLICK, INPUT_TEXT (#2258) --- skyvern/webeye/actions/handler.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/skyvern/webeye/actions/handler.py b/skyvern/webeye/actions/handler.py index 5e8b0c46..d85768ef 100644 --- a/skyvern/webeye/actions/handler.py +++ b/skyvern/webeye/actions/handler.py @@ -1686,6 +1686,9 @@ async def handle_left_mouse_action( return [ActionSuccess()] +ActionHandler.register_action_type(ActionType.SOLVE_CAPTCHA, handle_solve_captcha_action) +ActionHandler.register_action_type(ActionType.CLICK, handle_click_action) +ActionHandler.register_action_type(ActionType.INPUT_TEXT, handle_input_text_action) ActionHandler.register_action_type(ActionType.UPLOAD_FILE, handle_upload_file_action) # ActionHandler.register_action_type(ActionType.DOWNLOAD_FILE, handle_download_file_action) ActionHandler.register_action_type(ActionType.NULL_ACTION, handle_null_action)