get_element_text
Extract text content from UI elements in Tauri desktop applications using CSS selectors for automated testing and content verification.
Instructions
Get the text content of an element
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| selector | Yes | CSS selector to identify the element |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"description": "CSS selector to identify the element",
"type": "string"
}
},
"required": [
"selector"
],
"type": "object"
}