inputText
Enter text into a device and optionally perform IME actions like 'send' or 'search', supporting both Android and iOS platforms for mobile automation.
Instructions
Input text to the device
Input Schema
Name | Required | Description | Default |
---|---|---|---|
imeAction | No | Optional IME action to perform after text input | |
platform | Yes | Platform of the device | |
text | Yes | Text to input to the device |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"imeAction": {
"description": "Optional IME action to perform after text input",
"enum": [
"done",
"next",
"search",
"send",
"go",
"previous"
],
"type": "string"
},
"platform": {
"description": "Platform of the device",
"enum": [
"android",
"ios"
],
"type": "string"
},
"text": {
"description": "Text to input to the device",
"type": "string"
}
},
"required": [
"text",
"platform"
],
"type": "object"
}