xcode_take_screenshot
Capture a screenshot from an iOS simulator by specifying the UDID and output path for saving. Designed for mobile app automation within the MCP Appium Server environment.
Instructions
Take a screenshot of a simulator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
outputPath | Yes | Path where screenshot should be saved | |
udid | Yes | The UDID of the simulator |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"outputPath": {
"description": "Path where screenshot should be saved",
"type": "string"
},
"udid": {
"description": "The UDID of the simulator",
"type": "string"
}
},
"required": [
"udid",
"outputPath"
],
"type": "object"
}