getPageSnapshot
Obtain a semantic, simplified snapshot of a webpage with clean indented structure to reduce HTML token usage by up to 90%, enabling efficient web interactions.
Instructions
获取页面的语义化简化快照,返回清晰的缩进结构
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pageId | Yes | 页面ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"pageId": {
"description": "页面ID",
"type": "string"
}
},
"required": [
"pageId"
],
"type": "object"
}