mobile_open_url
Use this tool to open any specified URL directly in the browser of a mobile device, enabling quick access to web content during automation processes on iOS and Android platforms.
Instructions
Open a URL in browser on device
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | The URL to open |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"description": "The URL to open",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}