You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Restrict navigation to trusted domains. Wildcards like `*.example.com` also match the bare domain `example.com`. Sub-resource requests, WebSocket, and EventSource connections to non-allowed domains are also blocked. Include CDN domains your target pages depend on:
Auth vault operations (`auth login`, etc.) bypass action policy but domain allowlist still applies.
308
+
309
+
### Output Limits
310
+
311
+
Prevent context flooding from large pages:
312
+
313
+
```bash
314
+
export AGENT_BROWSER_MAX_OUTPUT=50000
315
+
```
316
+
230
317
## Diffing (Verifying Changes)
231
318
232
319
Use `diff snapshot` after performing an action to verify it had the intended effect. This compares the current accessibility tree against the last snapshot taken in the session.
The default Playwright timeout is 60 seconds forlocal browsers. For slow websites or large pages, use explicit waits instead of relying on the default timeout:
344
+
The default Playwright timeout is 25 seconds forlocal browsers. This can be overridden with the `AGENT_BROWSER_DEFAULT_TIMEOUT` environment variable (valuein milliseconds). For slow websites or large pages, use explicit waits instead of relying on the default timeout:
258
345
259
346
```bash
260
347
# Wait for network activity to settle (best for slow pages)
0 commit comments