Appearance
Test
Status: PASS
The agent-browser binary installs and responds to a version check. Actual browsing requires a Chromium-compatible runtime.
What was tested
bash
cargo install agent-browser
agent-browser --versionActual output:
agent-browser 0.19.0The Rust CLI installed successfully via cargo. Version 0.19.0 confirmed at test time.
What this test confirms
The binary is on PATH and executes without error. The install path and runtime are functional.
What is required for browser automation
Actual page navigation and interaction require a running Chromium-compatible browser. Run the install step first:
bash
agent-browser installThis downloads the browser runtime. Without it, agent-browser open will fail with:
error: Chrome binary not found. Run `agent-browser install` first.Smoke test: version check (no browser needed)
bash
agent-browser --versionExpected output:
agent-browser 0.19.0Any clean semver line with no error confirms the binary is installed and executable.
Full browser smoke test (requires agent-browser install first)
bash
agent-browser open https://example.com
agent-browser snapshot -i --json
agent-browser screenshot /tmp/test.png
agent-browser closeExpected results:
open-- no output, exit code 0snapshot -i --json-- JSON array of accessibility nodes withref,role,namefieldsscreenshot--/tmp/test.pngwritten to disk, exit code 0close-- no output, exit code 0