type_text
Enter text into input fields and editable elements using CSS selectors to automate form filling and data entry in Tauri desktop applications.
Instructions
Type text into an input field or editable element
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| selector | Yes | CSS selector to identify the input element | |
| text | Yes | Text to type into the element | |
| clear | No | Whether to clear existing text before typing. Default: false |
Input Schema (JSON Schema)
{
"properties": {
"clear": {
"default": false,
"description": "Whether to clear existing text before typing. Default: false",
"type": "boolean"
},
"selector": {
"description": "CSS selector to identify the input element",
"type": "string"
},
"text": {
"description": "Text to type into the element",
"type": "string"
}
},
"required": [
"selector",
"text"
],
"type": "object"
}