xcode_erase_simulator
Erase all data from an iOS simulator using its UDID, ensuring a clean state for testing on the MCP Appium Server.
Instructions
Erase all data from a simulator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
udid | Yes | The UDID of the simulator to erase |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"udid": {
"description": "The UDID of the simulator to erase",
"type": "string"
}
},
"required": [
"udid"
],
"type": "object"
}