closePageByIndex
Close a specific browser page by its index to manage multiple tabs efficiently, ensuring streamlined automation workflows in web interactions.
Instructions
通过索引关闭页面
Input Schema
Name | Required | Description | Default |
---|---|---|---|
index | Yes | 页面索引 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"index": {
"description": "页面索引",
"type": "number"
}
},
"required": [
"index"
],
"type": "object"
}