Screenshot Capture Pack
★Trusted◇Sandbox optionalv1.0.0MIT○Partially Verified42by AgentNode · published 6 months ago · toolpack
Capture full-page or element-level screenshots of any URL.
Take high-quality screenshots of web pages with configurable viewport, device emulation, and element targeting. Returns PNG or JPEG images.
Quick Start
agentnode install screenshot-capture-packRuns in a subprocess with filtered environment by default. Declared permissions are policy-checked, not sandboxed.
Usage
From packagefrom screenshot_capture_pack.tool import run
result = run(
action="take_screenshot",
url="https://agentnode.dev",
output_path="/tmp/agentnode-homepage.png",
full_page=True,
viewport={"width": 1440, "height": 900},
wait_for="networkidle"
)
print(f"Screenshot saved: {result['output_path']}")
print(f"Dimensions: {result['width']}x{result['height']}")
print(f"File size: {result['file_size_kb']:.1f} KB")
print(f"Load time: {result['load_time_ms']}ms")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 15d ago· Runner v2.0.0
Use this when you need to...
- ›Capture full-page screenshots of web pages for visual QA testing
- ›Take element-level screenshots of specific UI components by selector
- ›Generate before-and-after visual comparisons of website redesigns
- ›Capture mobile viewport screenshots for responsive design verification
- ›Archive web page snapshots as visual evidence for compliance records
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 screenshot-capture-packFiles (3)
License
MITStats
Compatibility
Frameworks
Runtime
pythonPython Version
>=3.10Trust & Security
Publisher
AgentNode
@agentnode