xcresult_list_attachments
Extract and list all attachments for a specific test from an .xcresult file, including attachment names, types, and indices, for easy export and analysis.
Instructions
List all attachments for a specific test - shows attachment names, types, and indices for export
Input Schema
Name | Required | Description | Default |
---|---|---|---|
test_id | Yes | Test ID or index number to list attachments for | |
xcresult_path | Yes | Absolute path to the .xcresult file |
Input Schema (JSON Schema)
{
"properties": {
"test_id": {
"description": "Test ID or index number to list attachments for",
"type": "string"
},
"xcresult_path": {
"description": "Absolute path to the .xcresult file",
"type": "string"
}
},
"required": [
"xcresult_path",
"test_id"
],
"type": "object"
}