midscene_navigate
Directs the browser to a specified URL within the current tab, enabling automated navigation for streamlined testing workflows on the MCP-Midscene server.
Instructions
Navigates the browser to the specified URL. Always opens in the current tab.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | URL to navigate to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"description": "URL to navigate to",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}