xcode_open_url
Open a specific URL on an iOS simulator by providing its UDID and the desired URL. Facilitates mobile app testing and automation via the MCP Appium Server.
Instructions
Open a URL on a simulator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
udid | Yes | The UDID of the simulator | |
url | Yes | The URL to open |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"udid": {
"description": "The UDID of the simulator",
"type": "string"
},
"url": {
"description": "The URL to open",
"type": "string"
}
},
"required": [
"udid",
"url"
],
"type": "object"
}