xcode_set_simulator_location
Set the location of an iOS simulator in the MCP Appium Server by specifying the UDID, latitude, and longitude for precise testing scenarios.
Instructions
Set the location of a simulator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
latitude | Yes | Latitude coordinate | |
longitude | Yes | Longitude coordinate | |
udid | Yes | The UDID of the simulator |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"latitude": {
"description": "Latitude coordinate",
"type": "number"
},
"longitude": {
"description": "Longitude coordinate",
"type": "number"
},
"udid": {
"description": "The UDID of the simulator",
"type": "string"
}
},
"required": [
"udid",
"latitude",
"longitude"
],
"type": "object"
}