ui_type
Input text directly into the iOS Simulator using a specified UDID. Simplifies interaction by enabling precise text entry for UI testing and automation.
Instructions
Input text into the iOS Simulator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | Text to input | |
udid | No | Udid of target, can also be set with the IDB_UDID env var |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"text": {
"description": "Text to input",
"maxLength": 500,
"pattern": "^[\\x20-\\x7E]+$",
"type": "string"
},
"udid": {
"description": "Udid of target, can also be set with the IDB_UDID env var",
"pattern": "^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}