browser_click
Automate web element interactions by clicking on specified page elements using Playwright browser automation.
Instructions
Click on an element
Input Schema
Name | Required | Description | Default |
---|---|---|---|
element | Yes | Human-readable element description | |
ref | Yes | Exact target element reference from page snapshot |
Input Schema (JSON Schema)
{
"properties": {
"element": {
"description": "Human-readable element description",
"type": "string"
},
"ref": {
"description": "Exact target element reference from page snapshot",
"type": "string"
}
},
"required": [
"element",
"ref"
],
"type": "object"
}