xcode_capture_screenshot
Capture screenshots from Xcode simulators by specifying the device ID and output path, enabling efficient iOS/macOS testing and project management.
Instructions
Capture screenshot from simulator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
device_id | Yes | Simulator device ID | |
output_path | Yes | Screenshot output path |
Input Schema (JSON Schema)
{
"properties": {
"device_id": {
"description": "Simulator device ID",
"type": "string"
},
"output_path": {
"description": "Screenshot output path",
"type": "string"
}
},
"required": [
"device_id",
"output_path"
],
"type": "object"
}