type_text
Input text into simulator fields using US keyboard characters. First, identify text fields with describe_ui, focus with tap, then type the desired text.
Instructions
Type text (supports US keyboard characters). Use describe_ui to find text field, tap to focus, then type.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
simulatorUuid | Yes | ||
text | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"simulatorUuid": {
"format": "uuid",
"type": "string"
},
"text": {
"minLength": 1,
"type": "string"
}
},
"required": [
"simulatorUuid",
"text"
],
"type": "object"
}