Native Rust browser automation CLI for Chrome/Chromium via CDP. gsd-browser keeps a persistent background daemon, auto-starts on first use, and exposes 63 top-level commands for navigation, interaction, snapshots with versioned refs, assertions, structured extraction, network control, visual diffing, tracing, and stateful auth flows.
Built for AI agents, CI pipelines, and developers who want deterministic browser control without adopting a full browser test framework.
curl -fsSL https://raw.githubusercontent.com/gsd-build/gsd-browser/main/install.sh | bashThe installer downloads the correct gsd-browser binary for your platform. If Chrome or Chromium is already installed, it uses that. Otherwise it downloads Chromium automatically when Chrome for Testing is available for your platform.
Download from GitHub Releases:
| Platform | Asset |
|---|---|
| macOS (Apple Silicon) | gsd-browser-darwin-arm64 |
| macOS (Intel) | gsd-browser-darwin-x64 |
| Linux (ARM64) | gsd-browser-linux-arm64 |
| Linux (x64) | gsd-browser-linux-x64 |
git clone https://github.com/gsd-build/gsd-browser.git
cd gsd-browser
cargo install --path cliThe public npm package (@gsd-build/gsd-browser) and crates.io package (gsd-browser) are not published yet. Use the installer, GitHub release assets, or a source build.
The daemon starts automatically on first use.
# Navigate to a page
gsd-browser navigate https://example.com
# Snapshot interactive elements and assign refs like @v1:e1
gsd-browser snapshot
# On example.com the only interactive element is the "More information..." link
gsd-browser click-ref @v1:e1
# Wait for navigation and assert the result
gsd-browser wait-for --condition network_idle
gsd-browser assert --checks '[{"kind":"url_contains","text":"iana.org"}]'
# Capture a PNG
gsd-browser screenshot --output page.png --format pnggsd-browser currently exposes 63 top-level commands:
| Area | Commands |
|---|---|
| Navigation | navigate, back, forward, reload |
| Logs & JavaScript | console, network, dialog, eval |
| Interaction | click, type, press, hover, scroll, select-option, set-checked, drag, set-viewport, upload-file |
| Inspection | accessibility-tree, find, page-source |
| Waits | wait-for |
| Snapshots & refs | snapshot, get-ref, click-ref, hover-ref, fill-ref |
| Assertions & batching | assert, diff, batch |
| Pages & frames | list-pages, switch-page, close-page, list-frames, select-frame |
| Forms & semantic actions | analyze-form, fill-form, find-best, act |
| Diagnostics | timeline, session-summary, debug-bundle |
| Screenshots & document output | screenshot, zoom-region, save-pdf |
| Visual regression | visual-diff |
| Structured extraction | extract |
| Network control | mock-route, block-urls, clear-routes |
| Device & browser state | emulate-device, save-state, restore-state |
| Auth vault | vault-save, vault-login, vault-list |
| Recording & traces | generate-test, har-export, trace-start, trace-stop |
| Safety, caching & daemon management | action-cache, check-injection, daemon |
- Persistent daemon with automatic startup for fast repeated commands
- Versioned refs from
snapshotfor deterministic interaction (@v1:e1,@v2:e3) - Explicit assertions with
assertand multi-step automation withbatch - Semantic
find-bestandactflows covering 15 built-in intents - Named sessions via
--sessionfor isolated parallel browser workers - Structured JSON output on every command via
--json - Visual diffing, HAR export, PDF generation, and CDP tracing in the same tool
- Saved browser state plus encrypted credential replay through the auth vault
- Prompt injection scanning for agent-facing browsing workflows
gsd-browser merges configuration in this order:
- Built-in defaults
- User config:
~/.gsd-browser/config.toml - Project config:
./gsd-browser.toml - Environment variables:
GSD_BROWSER_* - CLI flags
Example gsd-browser.toml:
[browser]
path = "/usr/bin/chromium"
headless = true
[daemon]
port = 9222
host = "127.0.0.1"
[screenshot]
quality = 90
format = "png"
full_page = false
[settle]
timeout_ms = 500
poll_ms = 40
quiet_window_ms = 100
[logs]
max_buffer_size = 1000
[artifacts]
dir = "./browser-artifacts"
[timeline]
enabled = true
max_entries = 500Supported environment variable overrides use GSD_BROWSER_<SECTION>_<FIELD> naming:
export GSD_BROWSER_BROWSER_PATH=/usr/bin/chromium
export GSD_BROWSER_BROWSER_HEADLESS=true
export GSD_BROWSER_DAEMON_PORT=9333
export GSD_BROWSER_SCREENSHOT_QUALITY=90
export GSD_BROWSER_SETTLE_TIMEOUT_MS=1000
export GSD_BROWSER_ARTIFACTS_DIR=./browser-artifacts
export GSD_BROWSER_VAULT_KEY=your-encryption-key- The CLI parses commands and sends them to a local daemon over a loopback HTTP channel.
- The daemon maintains the browser lifecycle, page/frame routing, network hooks, and action timeline.
--session <name>creates isolated daemon and browser instances for parallel workflows.
- The daemon auto-starts. You almost never need
gsd-browser daemon start. - Use
--jsonwhen you need structured output. - Prefer
snapshotthenclick-reforfill-reffor stable interaction, and re-snapshot after page changes. - Use
assertandbatchwhen you need deterministic pass/fail automation. find-bestandactcover 15 built-in semantic intents for common navigation, form, dialog, auth, and pagination actions.- Read SKILL.md for the full command reference and workflow patterns.
Licensed under either of:
at your option.