Support more action types: keypress, scroll (#2127)

This commit is contained in:
Shuchang Zheng
2025-04-11 09:59:26 -07:00
committed by GitHub
parent 715fe9809e
commit 2ac65c4a9b

View File

@@ -177,6 +177,8 @@ export const ActionTypes = {
SolveCaptcha: "solve_captcha",
extract: "extract",
ReloadPage: "reload_page",
KeyPress: "keypress",
Scroll: "scroll",
} as const;
export type ActionType = (typeof ActionTypes)[keyof typeof ActionTypes];
@@ -194,6 +196,8 @@ export const ReadableActionTypes: {
solve_captcha: "Solve Captcha",
extract: "Extract Data",
reload_page: "Reload Page",
keypress: "Press Keys",
scroll: "Scroll",
};
export type Option = {