browser_switch_to_window_by_url
Switches browser focus to a specific window or tab by matching its URL, enabling automated navigation between multiple open web pages during testing or automation workflows.
Instructions
Switch to a window by its URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | The URL of the window to switch to |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "The URL of the window to switch to",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}