# Commands Complete BrowserAct CLI command index. For detailed usage and context, see the relevant feature chapter. ## Global Options | Option | Description | |--------|-------------| | `--session ` | Session name (required for browser interaction commands) | | `--format text\|json` | Output format | | `--no-auto-dialog` | Disable automatic dialog handling | | `--version` | Show CLI version | ## Common Tasks | I want to... | Use these commands | See | |--------------|--------------------|-----| | Extract content from a protected site | `stealth-extract` | [Anti-Blocking](anti-blocking.md) | | Create an anti-scraping browser | `browser create --type stealth ...` | [Browser Modes](browser-modes.md) | | Manage static proxies | `proxy list` / `proxy buy-request` | [Anti-Blocking](anti-blocking.md) | | Open a page and interact | `browser open` → `state` → `click`/`input` | [Agent Design](agent-design.md) | | Find the API behind a page | `network requests` → `network request ` | [Agent Design](agent-design.md) | | Handle CAPTCHAs | `solve-captcha` → `remote-assist` | [Anti-Blocking](anti-blocking.md) / [Better Headless](headless.md) | | Hand off when stuck | `remote-assist --objective "..."` | [Better Headless](headless.md) | | Run multiple accounts in parallel | Multiple browsers, each with its own `--session` | [Concurrency](concurrency.md) | | Reuse an existing login | `browser import-profile` | [Browser Modes](browser-modes.md) | ## Command Groups ### Browser Interaction (requires `--session`) #### Navigation ``` navigate [--new-tab] back / forward / reload ``` #### Page State ``` state screenshot [path] [--full] ``` Index markers in `state` output: - `[N]` — Index of an interactive element (used with `click N` / `input N "..."` etc.) - `*[N]` — Element added or changed since the previous `state` call. The first call marks every element with `*`; later calls mark only the deltas, helping the agent focus on what's new. #### Interaction ``` click hover input select