click_by_uid
Click or double-click browser elements using unique identifiers for automated testing, web scraping, and browser control tasks.
Instructions
Click an element identified by its UID. Supports double-click via dblClick=true. TIP: Take a fresh snapshot if the UID becomes stale.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dblClick | No | If true, performs a double-click (default: false) | |
uid | Yes | The UID of the element to click |
Input Schema (JSON Schema)
{
"properties": {
"dblClick": {
"description": "If true, performs a double-click (default: false)",
"type": "boolean"
},
"uid": {
"description": "The UID of the element to click",
"type": "string"
}
},
"required": [
"uid"
],
"type": "object"
}