switch-context
Facilitates switching between app contexts (e.g., NATIVE_APP, WEBVIEW) for mobile app automation on the MCP Appium Server, enabling efficient context management during testing.
Instructions
Switch between contexts (e.g., NATIVE_APP, WEBVIEW)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | Yes | Context to switch to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"context": {
"description": "Context to switch to",
"type": "string"
}
},
"required": [
"context"
],
"type": "object"
}