chore(core): add wait time between steps for the page to react

This commit is contained in:
Simon
2026-03-03 21:51:10 +08:00
parent 645a7ceb52
commit 06280c2ba5
2 changed files with 3 additions and 1 deletions

View File

@@ -342,6 +342,8 @@ export class PageAgentCore extends EventTarget {
await onAfterTask?.(this, result)
return result
}
await waitFor(0.4) // @TODO: configurable
}
}