Browser Tool
Web automation capabilities.
Overview
The browser tool allows agents to:
- Navigate web pages
- Fill forms
- Click buttons
- Extract content
- Take screenshots
Enable
bash
openclaw skills enable browserOr in config:
json5
{
tools: {
browser: {
enabled: true
}
}
}Capabilities
Navigation
Visit and interact with web pages.
Form Filling
Automatically fill forms and submit.
Content Extraction
Extract text, images, and data from pages.
Screenshots
Capture page screenshots.
Configuration
json5
{
tools: {
browser: {
enabled: true,
headless: true, // No visible browser
timeout: 30000, // Page load timeout
userAgent: "custom", // Custom user agent
viewport: {
width: 1920,
height: 1080
}
}
}
}CLI Commands
bash
# Start browser
openclaw browser start
# Check status
openclaw browser status
# Take screenshot
openclaw browser screenshotUse Cases
- Web research
- Form automation
- Data extraction
- Website testing