click_element
Automate clicking on UI elements in Tauri desktop applications using CSS selectors to interact with buttons, links, and other interface components for testing and workflow automation.
Instructions
Click a UI element identified by a CSS selector
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| selector | Yes | CSS selector to identify the element to click (e.g., "#button-id", ".button-class", "button[name=submit]") |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"description": "CSS selector to identify the element to click (e.g., \"#button-id\", \".button-class\", \"button[name=submit]\")",
"type": "string"
}
},
"required": [
"selector"
],
"type": "object"
}