browser_switch_to_window_by_title
Switch to a specific browser window using its title text, enabling navigation between multiple open windows during web automation tasks.
Instructions
Switch to a window by its title
Input Schema
Name | Required | Description | Default |
---|---|---|---|
title | Yes | The title of the window to switch to |
Input Schema (JSON Schema)
{
"properties": {
"title": {
"description": "The title of the window to switch to",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}