The simplest, thinnest, and most powerful harness to control your real browser with your agent.
This project has been quarantined.
PyPI Admins need to review this project before it can be restored. While in quarantine, the project is not installable by clients, and cannot be being modified by its maintainers.
Read more in the project in quarantine help article.
Project description
browser-harness-headless
The simplest, thinnest, and most powerful harness to control headless Chrome/Chromium with your agent — no display server needed.
A headless adaptation of browser-harness that auto-launches and manages a headless Chrome instance. Perfect for CI pipelines, servers, containers, and any environment without a GUI.
Quick Start
pip install -e .
browser-harness-headless <<'EOF'
new_tab("https://example.com")
print(page_info()["title"])
capture_screenshot("page.png")
EOF
That's it. No Chrome setup, no display, no config. The harness launches headless Chrome automatically on first use.
How It Works
┌──────────────┐ ┌────────────┐ ┌─────────────────┐
│ Agent Code │──IPC──│ Daemon │──CDP──│ Headless Chrome │
│ (stdin) │ │ (Unix sock)│ │ (--headless=new) │
└──────────────┘ └────────────┘ └─────────────────┘
- CLI (
browser-harness-headless) reads Python from stdin, ensures daemon is running - Daemon is a long-lived process that holds the CDP WebSocket to Chrome
- Headless Chrome runs with
--headless=new(modern headless — full rendering, no GUI)
Usage
As a CLI tool
# Run inline code
echo 'new_tab("https://httpbin.org/get"); print(js("document.body.innerText"))' | browser-harness-headless
# Run a script file
browser-harness-headless < my_script.py
# Multi-line heredoc
browser-harness-headless <<'EOF'
new_tab("https://news.ycombinator.com")
wait_for_load()
titles = js("""
Array.from(document.querySelectorAll('.titleline a'))
.slice(0, 5)
.map(a => a.textContent)
""")
print(titles)
EOF
Management Commands
browser-harness-headless --doctor # Diagnostics
browser-harness-headless --status # JSON status
browser-harness-headless --restart # Restart daemon + Chrome
browser-harness-headless --stop # Stop everything
Configuration
| Env Var | Description |
|---|---|
BHH_CHROME_PATH |
Path to Chrome/Chromium binary |
BHH_CDP_WS |
Connect to existing CDP WebSocket instead of launching Chrome |
BHH_HOME |
Config/runtime directory (default: ~/.config/browser-harness-headless) |
BHH_DOMAIN_SKILLS |
Enable domain-specific skills (1 to enable) |
Helpers
All helpers are pre-imported when code runs via the CLI:
| Helper | Description |
|---|---|
new_tab(url) |
Open a new tab and navigate |
goto_url(url) |
Navigate current tab |
page_info() |
Get URL, title, viewport size, scroll position |
click_at_xy(x, y) |
Click at viewport coordinates |
type_text(text) |
Insert text at cursor |
fill_input(selector, text) |
Framework-aware form filling (React/Vue/Ember) |
press_key(key, modifiers) |
Simulate key press |
scroll(x, y, dx, dy) |
Mouse wheel scroll |
capture_screenshot(path, full_page) |
Take PNG screenshot |
list_tabs() / switch_tab() / close_tab() |
Tab management |
js(expression) |
Execute JavaScript, return result |
wait_for_load() |
Wait for page load |
wait_for_element(selector) |
Wait for DOM element |
wait_for_network_idle() |
Wait for network quiet |
upload_file(selector, path) |
Upload file to input |
http_get(url) |
HTTP GET via page's fetch |
cdp(method, **params) |
Raw Chrome DevTools Protocol |
Architecture
src/browser_harness_headless/
├── __init__.py # Package init
├── run.py # CLI entry point
├── admin.py # Chrome launch, daemon lifecycle
├── daemon.py # CDP WebSocket owner, IPC server
├── helpers.py # Agent-facing API (navigation, input, screenshots, etc.)
├── _ipc.py # Unix socket / TCP IPC layer
└── paths.py # Filesystem layout
Key Differences from browser-harness
| Feature | browser-harness | browser-harness-headless |
|---|---|---|
| Browser | Uses your running Chrome | Auto-launches headless Chrome |
| Display | Requires GUI/display | No display needed |
| Setup | Enable remote debugging manually | Zero setup |
| Cloud | Browser Use cloud support | Local-only (or bring your own CDP) |
| Auth | OAuth for cloud | None needed |
| Dependencies | cdp-use, fetch-use | websockets, pillow only |
Requirements
- Python 3.11+
- Chrome or Chromium installed (or set
BHH_CHROME_PATH) - No display server needed
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file browser_use_headless-0.1.4.tar.gz.
File metadata
- Download URL: browser_use_headless-0.1.4.tar.gz
- Upload date:
- Size: 51.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5bee427ed06b9bc60e6b7c9cb2b6ac4bf16c2a1579907885900063f600f08ef4
|
|
| MD5 |
27dff468b889eef8d3422b4a1ac7cede
|
|
| BLAKE2b-256 |
73d6b1c0705e12f08455b5417c3b11d1661207373c7efdf1d4c03619e1c1fa52
|
Provenance
The following attestation bundles were made for browser_use_headless-0.1.4.tar.gz:
Publisher:
workflow.yml on browser-use-headless/browser-use-headless
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
browser_use_headless-0.1.4.tar.gz -
Subject digest:
5bee427ed06b9bc60e6b7c9cb2b6ac4bf16c2a1579907885900063f600f08ef4 - Sigstore transparency entry: 2164578241
- Sigstore integration time:
-
Permalink:
browser-use-headless/browser-use-headless@856a81034d75a0a7652e036091d5066a593a9fd7 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/browser-use-headless
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
workflow.yml@856a81034d75a0a7652e036091d5066a593a9fd7 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file browser_use_headless-0.1.4-py3-none-any.whl.
File metadata
- Download URL: browser_use_headless-0.1.4-py3-none-any.whl
- Upload date:
- Size: 54.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4ecfe551f2045cb8eb8cc03a684f6d6d9005683da2b0275456fb822cf1dacfa
|
|
| MD5 |
accb0abb6f596fd96bd91ca7e8804425
|
|
| BLAKE2b-256 |
c96da50faa399a0f29b591a99e666bfce02f8d966f12b7d65fdf6e7c3e33efb6
|
Provenance
The following attestation bundles were made for browser_use_headless-0.1.4-py3-none-any.whl:
Publisher:
workflow.yml on browser-use-headless/browser-use-headless
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
browser_use_headless-0.1.4-py3-none-any.whl -
Subject digest:
b4ecfe551f2045cb8eb8cc03a684f6d6d9005683da2b0275456fb822cf1dacfa - Sigstore transparency entry: 2164578261
- Sigstore integration time:
-
Permalink:
browser-use-headless/browser-use-headless@856a81034d75a0a7652e036091d5066a593a9fd7 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/browser-use-headless
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
workflow.yml@856a81034d75a0a7652e036091d5066a593a9fd7 -
Trigger Event:
workflow_dispatch
-
Statement type: