Browser Automation Pack
★Trusted◇Sandbox optionalv1.0.0MIT○Partially Verified42by AgentNode · published 5 months ago · toolpack
Automate web browsing, form filling, and data extraction.
Headless browser automation using Playwright. Navigate pages, fill forms, click buttons, take screenshots, and extract structured data from dynamic websites.
Quick Start
agentnode install browser-automation-packRuns in a subprocess with filtered environment by default. Declared permissions are policy-checked, not sandboxed.
Usage
From packagefrom browser_automation_pack.tool import run
result = run(
capability="browser_automate",
params={
"url": "https://books.toscrape.com/catalogue/category/books/science_22/index.html",
"actions": [
{"type": "wait_for", "selector": ".product_pod"},
{
"type": "extract",
"selector": ".product_pod",
"fields": {
"title": "h3 a@title",
"price": ".price_color",
"availability": ".availability"
}
}
]
}
)
for book in result["extracted_data"]:
print(f"{book['title']} — {book['price']} ({book['availability'].strip()})")Runs locally on your machine. No execution data is sent to AgentNode. Permissions are checked before execution. Learn how this works
Verification
Package installs and imports correctly. requires system dependencies not in sandbox.
This package requires system dependencies (e.g., Chromium, ffmpeg) not available in the sandbox.
Verified in limited mode (sandbox limitations active)
Last verified 4d ago· Runner v2.0.0
Use this when you need to...
- ›Scrape product prices from e-commerce sites
- ›Fill and submit web forms automatically
- ›Take screenshots of web pages for monitoring
- ›Extract structured data from dynamic JavaScript pages
- ›Automate login flows and authenticated scraping
README
Version History
Capabilities
Permissions
Declared by the publisher. Checked before execution by the policy gate.
Permissions are policy-checked before execution. For trusted and curated packages that run on the host, network and filesystem access are policy-checked but not OS-sandboxed. When runtime isolation is required for untrusted/community code, AgentNode uses sandbox-or-fail-closed if the required container runtime and pinned image are available. Learn more
Privacy
All tool execution happens locally on your machine. AgentNode never receives:
- • Tool inputs or outputs
- • Execution logs
- • Data your agent processes
Only install events and search queries are sent to the registry.
agentnode install browser-automation-packFiles (3)
License
MITStats
Compatibility
Frameworks
Runtime
pythonPython Version
>=3.10Trust & Security
Publisher
AgentNode
@agentnode