activatePage
Activate a specific webpage by providing its unique ID to initiate automated interactions, optimizing browser automation tasks efficiently using semantic snapshots.
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"
}