tap
Tap at specified coordinates on Xcode simulators using exact UI element positions obtained via describe_ui. Configure optional timing delays for precise interactions.
Instructions
Tap at specific coordinates. Use describe_ui to get precise element coordinates (don't guess from screenshots). Supports optional timing delays.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
postDelay | No | ||
preDelay | No | ||
simulatorUuid | Yes | ||
x | Yes | ||
y | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"postDelay": {
"minimum": 0,
"type": "number"
},
"preDelay": {
"minimum": 0,
"type": "number"
},
"simulatorUuid": {
"format": "uuid",
"type": "string"
},
"x": {
"type": "integer"
},
"y": {
"type": "integer"
}
},
"required": [
"simulatorUuid",
"x",
"y"
],
"type": "object"
}