action handlers back - SOLVE_CAPTCHA, CLICK, INPUT_TEXT (#2258)

This commit is contained in:
Shuchang Zheng
2025-04-30 18:49:07 +08:00
committed by GitHub
parent 1a33810f09
commit 5a3691e0dc

View File

@@ -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)