browser_switch_to_window
Switch between multiple browser windows during automated testing to interact with different web pages or tabs in your test workflow.
Instructions
Switch to a different browser window
Input Schema
Name | Required | Description | Default |
---|---|---|---|
windowHandle | Yes | The handle of the window to switch to |
Input Schema (JSON Schema)
{
"properties": {
"windowHandle": {
"description": "The handle of the window to switch to",
"type": "string"
}
},
"required": [
"windowHandle"
],
"type": "object"
}