Case: Browser Auth-Wall Flow¶
Star on GitHub Compare Workflows Case Library
When to Use¶
Use this when browser automation reaches login walls, Cloudflare checks, or challenge pages.
Run¶
Launch and navigate:
browser_launch {"profile":"default"}
browser_navigate {"url":"https://target.site"}
Check gate state:
browser_auth_check {"profile":"default"}
browser_challenge_check {"profile":"default"}
If human action is required, complete login/challenge manually in the same profile, then continue:
browser_snapshot {"profile":"default","includeAx":true}
Evidence¶
- Tool output clearly signals wall state (
requiresHumanAction, challenge/auth hints). - After manual completion,
browser_snapshotsucceeds on the post-login page. - No bypass behavior is attempted by automation.
Why This Matters¶
Reliable automation is not blind automation. This flow keeps policy-sensitive steps explicitly human-gated, then resumes with shared browser state.