Post action improvements: only generate scripts for a certain list of actions (#3676)

This commit is contained in:
Shuchang Zheng
2025-10-15 12:41:52 -07:00
committed by GitHub
parent dfe8d6fb85
commit 6b385b3c85
3 changed files with 21 additions and 6 deletions

View File

@@ -37,3 +37,15 @@ class ActionType(StrEnum):
ActionType.SELECT_OPTION,
ActionType.CHECKBOX,
]
POST_ACTION_EXECUTION_ACTION_TYPES = [
ActionType.CLICK,
ActionType.INPUT_TEXT,
ActionType.UPLOAD_FILE,
ActionType.DOWNLOAD_FILE,
ActionType.SELECT_OPTION,
ActionType.WAIT,
ActionType.SOLVE_CAPTCHA,
ActionType.EXTRACT,
]