xcode_terminate_app
Terminate an app on a simulator by specifying the UDID and bundle identifier using the MCP Appium Server for efficient app management during automation.
Instructions
Terminate an app on a simulator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bundleId | Yes | Bundle identifier of the app | |
udid | Yes | The UDID of the simulator |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"bundleId": {
"description": "Bundle identifier of the app",
"type": "string"
},
"udid": {
"description": "The UDID of the simulator",
"type": "string"
}
},
"required": [
"udid",
"bundleId"
],
"type": "object"
}