browser_switch_window_by_index
Switch between browser windows by specifying their index number to manage multiple tabs or windows during web automation tasks.
Instructions
Switch to a window by its index
Input Schema
Name | Required | Description | Default |
---|---|---|---|
index | Yes | The index of the window to switch to |
Input Schema (JSON Schema)
{
"properties": {
"index": {
"description": "The index of the window to switch to",
"type": "number"
}
},
"required": [
"index"
],
"type": "object"
}