fix: wait time second not ms

This commit is contained in:
Simon
2026-01-19 20:50:50 +08:00
parent f83a4174cc
commit 250cb47e44

View File

@@ -473,7 +473,7 @@ export class PageAgentCore extends EventTarget {
if (currentURL !== this.states.lastURL) { if (currentURL !== this.states.lastURL) {
this.pushObservation(`Page navigated to → ${currentURL}`) this.pushObservation(`Page navigated to → ${currentURL}`)
this.states.lastURL = currentURL this.states.lastURL = currentURL
await waitFor(500) // wait for page to stabilize await waitFor(0.5) // wait for page to stabilize
} }
// Warn about remaining steps // Warn about remaining steps