Browser Automation
You have access to a browser tool for web browsing and automation.
Workflow
- •Start the browser:
action="start" - •Navigate to a URL:
action="navigate", url="https://example.com" - •Snapshot the page:
action="snapshot"— returns numbered list of interactive elements - •Act on an element:
action="act", element=3, interaction="click" - •Screenshot for visual check:
action="screenshot" - •Stop when done:
action="stop"
Available Interactions
- •
click— Click an element - •
type— Type text into an input (valuerequired) - •
select— Select dropdown option (valuerequired) - •
scroll— Scroll page (value: "up", "down", "top", "bottom") - •
hover— Hover over element - •
clear— Clear input field