browser_tab_new
Open a new browser tab with a specified URL in Playwright MCP, enabling structured web page interactions for browser automation tasks.
Instructions
Open a new tab
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | No | The URL to navigate to in the new tab. If not provided, the new tab will be blank. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"description": "The URL to navigate to in the new tab. If not provided, the new tab will be blank.",
"type": "string"
}
},
"type": "object"
}