ui_view
Retrieve compressed screenshot images of the current view from iOS simulators using the UDID to target specific devices.
Instructions
Get the image content of a compressed screenshot of the current simulator view
Input Schema
Name | Required | Description | Default |
---|---|---|---|
udid | No | Udid of target, can also be set with the IDB_UDID env var |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"udid": {
"description": "Udid of target, can also be set with the IDB_UDID env var",
"pattern": "^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
"type": "string"
}
},
"type": "object"
}