save-ui-hierarchy
Save UI hierarchy XML to a specified file path, enabling structured storage and access for mobile app automation workflows within the MCP Appium Server.
Instructions
Save UI hierarchy XML to a file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | Path to save the XML file | |
xmlSource | Yes | XML source to save |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"description": "Path to save the XML file",
"type": "string"
},
"xmlSource": {
"description": "XML source to save",
"type": "string"
}
},
"required": [
"xmlSource",
"filePath"
],
"type": "object"
}