new_page
Open a new browser tab and navigate to a specified URL for testing, scraping, or browser automation tasks. Returns the tab index for further interaction.
Instructions
Open a new tab and navigate it to the provided URL. Returns the new tab index in the response.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | URL to load in a new page |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "URL to load in a new page",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}