browser_tab_select
Select a specific browser tab by its index to control navigation and interactions within automated web browsing workflows using Playwright MCP.
Instructions
Select a tab by index
Input Schema
Name | Required | Description | Default |
---|---|---|---|
index | Yes | The index of the tab to select |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"index": {
"description": "The index of the tab to select",
"type": "number"
}
},
"required": [
"index"
],
"type": "object"
}