createPage
Generate new browser pages with specified names and descriptions, optionally navigating to a URL and setting a wait timeout for snapshots, enabling efficient web interactions.
Instructions
创建新的浏览器页面
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | 页面描述 | |
name | Yes | 页面名称 | |
url | No | 可选:创建后自动导航到的URL | |
waitForTimeout | No | 可选:操作后等待获取快照的延迟时间(毫秒,默认2000) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"description": "页面描述",
"type": "string"
},
"name": {
"description": "页面名称",
"type": "string"
},
"url": {
"description": "可选:创建后自动导航到的URL",
"type": "string"
},
"waitForTimeout": {
"description": "可选:操作后等待获取快照的延迟时间(毫秒,默认2000)",
"type": "number"
}
},
"required": [
"name",
"description"
],
"type": "object"
}