send-keys
Send text input to a specified UI element using element selectors like xpath or id, enabling precise mobile app automation in Appium-based workflows.
Instructions
Send text input to a UI element
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | Element selector (e.g., xpath, id) | |
strategy | No | Selector strategy: xpath, id, accessibility id, class name (default: xpath) | |
text | Yes | Text to input |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"selector": {
"description": "Element selector (e.g., xpath, id)",
"type": "string"
},
"strategy": {
"description": "Selector strategy: xpath, id, accessibility id, class name (default: xpath)",
"type": "string"
},
"text": {
"description": "Text to input",
"type": "string"
}
},
"required": [
"selector",
"text"
],
"type": "object"
}