Skip to main content

Chrome automation from the command line

Project description

Rodney: Chrome automation from the command line

PyPI Changelog Tests License

A Go CLI tool that drives a persistent headless Chrome instance using the rod browser automation library. Each command connects to the same long-running Chrome process, making it easy to script multi-step browser interactions from shell scripts or interactive use.

Architecture

rodney start     →  launches Chrome (headless, persists after CLI exits)
                     saves WebSocket debug URL to ~/.rodney/state.json

rodney open URL  →  connects to running Chrome via WebSocket
                     navigates the active tab, disconnects

rodney js EXPR   →  connects, evaluates JS, prints result, disconnects

rodney stop      →  connects and shuts down Chrome, cleans up state

Each CLI invocation is a short-lived process. Chrome runs independently and tabs persist between commands.

Building

go build -o rodney .

Requires:

  • Go 1.21+
  • Google Chrome or Chromium installed (or set ROD_CHROME_BIN=/path/to/chrome)

Usage

Start/stop the browser

rodney start          # Launch headless Chrome
rodney status         # Show browser info and active page
rodney stop           # Shut down Chrome

Navigate

rodney open https://example.com    # Navigate to URL
rodney open example.com            # http:// prefix added automatically
rodney back                        # Go back
rodney forward                     # Go forward
rodney reload                      # Reload page

Extract information

rodney url                    # Print current URL
rodney title                  # Print page title
rodney text "h1"              # Print text content of element
rodney html "div.content"     # Print outer HTML of element
rodney html                   # Print full page HTML
rodney attr "a#link" href     # Print attribute value
rodney pdf output.pdf         # Save page as PDF

Run JavaScript

rodney js document.title                        # Evaluate expression
rodney js "1 + 2"                               # Math
rodney js 'document.querySelector("h1").textContent'  # DOM queries
rodney js '[1,2,3].map(x => x * 2)'            # Returns pretty-printed JSON
rodney js 'document.querySelectorAll("a").length'     # Count elements

The expression is automatically wrapped in () => { return (expr); }.

Interact with elements

rodney click "button#submit"       # Click element
rodney input "#search" "query"     # Type into input field
rodney clear "#search"             # Clear input field
rodney select "#dropdown" "value"  # Select dropdown by value
rodney submit "form#login"         # Submit a form
rodney hover ".menu-item"          # Hover over element
rodney focus "#email"              # Focus element

Wait for conditions

rodney wait ".loaded"       # Wait for element to appear and be visible
rodney waitload             # Wait for page load event
rodney waitstable           # Wait for DOM to stop changing
rodney waitidle             # Wait for network to be idle
rodney sleep 2.5            # Sleep for N seconds

Screenshots

rodney screenshot                      # Save as screenshot.png
rodney screenshot page.png             # Save to specific file
rodney screenshot-el ".chart" chart.png  # Screenshot specific element

Manage tabs

rodney pages                    # List all tabs (* marks active)
rodney newpage https://...      # Open URL in new tab
rodney page 1                   # Switch to tab by index
rodney closepage 1              # Close tab by index
rodney closepage                # Close active tab

Query elements

rodney exists ".loading"    # Exit 0 if exists, exit 1 if not
rodney count "li.item"      # Print number of matching elements
rodney visible "#modal"     # Exit 0 if visible, exit 1 if not

Accessibility testing

rodney ax-tree                           # Dump full accessibility tree
rodney ax-tree --depth 3                 # Limit tree depth
rodney ax-tree --json                    # Output as JSON

rodney ax-find --role button             # Find all buttons
rodney ax-find --name "Submit"           # Find by accessible name
rodney ax-find --role link --name "Home" # Combine filters
rodney ax-find --role button --json      # Output as JSON

rodney ax-node "#submit-btn"             # Inspect element's a11y properties
rodney ax-node "h1" --json               # Output as JSON

These commands use Chrome's Accessibility CDP domain to expose what assistive technologies see. ax-tree uses getFullAXTree, ax-find uses queryAXTree, and ax-node uses getPartialAXTree.

# CI check: verify all buttons have accessible names
rodney ax-find --role button --json | python3 -c "
import json, sys
buttons = json.load(sys.stdin)
unnamed = [b for b in buttons if not b.get('name', {}).get('value')]
if unnamed:
    print(f'FAIL: {len(unnamed)} button(s) missing accessible name')
    sys.exit(1)
print(f'PASS: all {len(buttons)} buttons have accessible names')
"

Shell scripting examples

# Wait for page to load and extract data
rodney start
rodney open https://example.com
rodney waitstable
title=$(rodney title)
echo "Page: $title"

# Conditional logic based on element presence
if rodney exists ".error-message"; then
    rodney text ".error-message"
fi

# Loop through pages
for url in page1 page2 page3; do
    rodney open "https://example.com/$url"
    rodney waitstable
    rodney screenshot "${url}.png"
done

rodney stop

Configuration

Environment Variable Default Description
ROD_CHROME_BIN /usr/bin/google-chrome Path to Chrome/Chromium binary
ROD_TIMEOUT 30 Default timeout in seconds for element queries
HTTPS_PROXY / HTTP_PROXY (none) Authenticated proxy auto-detected on start

State is stored in ~/.rodney/state.json. Chrome user data is stored in ~/.rodney/chrome-data/.

Proxy support

In environments with authenticated HTTP proxies (e.g., HTTPS_PROXY=http://user:pass@host:port), rodney start automatically:

  1. Detects the proxy credentials from environment variables
  2. Launches a local forwarding proxy that injects Proxy-Authorization headers into CONNECT requests
  3. Configures Chrome to use the local proxy

This is necessary because Chrome cannot natively authenticate to proxies during HTTPS tunnel (CONNECT) establishment. The local proxy runs as a background process and is automatically cleaned up by rodney stop.

See claude-code-chrome-proxy.md for detailed technical notes.

How it works

The tool uses the rod Go library which communicates with Chrome via the DevTools Protocol (CDP) over WebSocket. Key implementation details:

  • start uses rod's launcher package to start Chrome with Leakless(false) so Chrome survives after the CLI exits
  • Proxy auth handled via a local forwarding proxy that bridges Chrome to authenticated upstream proxies
  • State persistence via a JSON file containing the WebSocket debug URL and Chrome PID
  • Each command creates a new rod Browser connection to the same Chrome instance, executes the operation, and disconnects
  • Element queries use rod's built-in auto-wait with a configurable timeout (default 30s)
  • JS evaluation wraps user expressions in arrow functions as required by rod's Eval
  • Accessibility commands call CDP's Accessibility domain directly via rod's proto package (getFullAXTree, queryAXTree, getPartialAXTree)

Dependencies

Commands reference

Command Arguments Description
start Launch headless Chrome
stop Shut down Chrome
status Show browser status
open <url> Navigate to URL
back Go back in history
forward Go forward in history
reload Reload current page
url Print current URL
title Print page title
html [selector] Print HTML (page or element)
text <selector> Print element text content
attr <selector> <name> Print attribute value
pdf [file] Save page as PDF
js <expression> Evaluate JavaScript
click <selector> Click element
input <selector> <text> Type into input
clear <selector> Clear input
select <selector> <value> Select dropdown value
submit <selector> Submit form
hover <selector> Hover over element
focus <selector> Focus element
wait <selector> Wait for element to appear
waitload Wait for page load
waitstable Wait for DOM stability
waitidle Wait for network idle
sleep <seconds> Sleep N seconds
screenshot [file] Page screenshot
screenshot-el <selector> [file] Element screenshot
pages List tabs
page <index> Switch tab
newpage [url] Open new tab
closepage [index] Close tab
exists <selector> Check element exists (exit code)
count <selector> Count matching elements
visible <selector> Check element visible (exit code)
ax-tree [--depth N] [--json] Dump accessibility tree
ax-find [--name N] [--role R] [--json] Find accessible nodes
ax-node <selector> [--json] Show element accessibility info

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rodney-0.2.0-py3-none-musllinux_1_2_x86_64.whl (11.5 MB view details)

Uploaded Python 3musllinux: musl 1.2+ x86-64

rodney-0.2.0-py3-none-musllinux_1_2_aarch64.whl (11.0 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARM64

rodney-0.2.0-py3-none-manylinux_2_17_x86_64.whl (11.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

rodney-0.2.0-py3-none-manylinux_2_17_aarch64.whl (11.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

rodney-0.2.0-py3-none-macosx_11_0_arm64.whl (11.5 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

rodney-0.2.0-py3-none-macosx_10_9_x86_64.whl (11.9 MB view details)

Uploaded Python 3macOS 10.9+ x86-64

File details

Details for the file rodney-0.2.0-py3-none-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rodney-0.2.0-py3-none-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22ae878900391685ec23fb2b68741007a9cfce2adbc290a6fae814b84033e2df
MD5 1a694509a5608b26b55eceeb40484fb9
BLAKE2b-256 feca84be241a53fb3cd9ed05605a49956ab7895304373ac99d38d128b6837fcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodney-0.2.0-py3-none-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on simonw/rodney

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodney-0.2.0-py3-none-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rodney-0.2.0-py3-none-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ae2db3f109addab9c067e046c72c7f16f5fb0b00a777aa7f8d84a8c5a39bb1e
MD5 4105fa932d75104f95503ccf87e00f67
BLAKE2b-256 326c1e4b580dac417ac1746c41ad367f19c6ec6ed1652106d329a6d35185c757

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodney-0.2.0-py3-none-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on simonw/rodney

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodney-0.2.0-py3-none-manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for rodney-0.2.0-py3-none-manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 fe41de93ce6a4f60b5a8a83a73eaa610644e8bf70f271688f7576e90e6cf441c
MD5 2d6835b7391f874523308af177d945d1
BLAKE2b-256 e7081e28db1f9722f50029e7e6aa13279ee3f3141130086e15e999e642033bb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodney-0.2.0-py3-none-manylinux_2_17_x86_64.whl:

Publisher: publish.yml on simonw/rodney

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodney-0.2.0-py3-none-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for rodney-0.2.0-py3-none-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 209398e2e0dc40c7f372d719c4ddf16850da9dd180519b85ef19e8bf01e34d07
MD5 5a998490d447e8146f0410c27ce7c228
BLAKE2b-256 1b0ca489906ecb571277c08e861a3608791d69211b12ad381c5362fea3d50fc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodney-0.2.0-py3-none-manylinux_2_17_aarch64.whl:

Publisher: publish.yml on simonw/rodney

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodney-0.2.0-py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rodney-0.2.0-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a45d6268bbfb69670e3cbd6a91deaeef386a8d2621b9aaaaa8c30244a0fd064
MD5 cf4ece8c6eb5754f4663ff14fe959a48
BLAKE2b-256 783a66d79690315ac671dba0315751f81e8f3967ec319a2bee89a861355a79f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodney-0.2.0-py3-none-macosx_11_0_arm64.whl:

Publisher: publish.yml on simonw/rodney

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodney-0.2.0-py3-none-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rodney-0.2.0-py3-none-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5a8bb6622720c35f8dc667204dde22c9e6b47516bf86649228ecdfe72c0da8c6
MD5 81f0c9b68134541aa3e0f1da5fbe8654
BLAKE2b-256 f4916a2947b193c21321c3f9bae66b12aee328fef6f9b723a6c24ca4f05b887e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodney-0.2.0-py3-none-macosx_10_9_x86_64.whl:

Publisher: publish.yml on simonw/rodney

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page