close_page
Close browser tabs by index to manage multiple pages during automation testing and web scraping workflows.
Instructions
Close the tab at the given index. Use list_pages to find valid indices.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pageIdx | Yes | The index of the page to close |
Input Schema (JSON Schema)
{
"properties": {
"pageIdx": {
"description": "The index of the page to close",
"type": "number"
}
},
"required": [
"pageIdx"
],
"type": "object"
}