playwright_new_session
Create and manage new browser sessions to open windows and optionally navigate to specified URLs using browser automation capabilities.
Instructions
创建新的浏览器会话,打开一个浏览器窗口并可选择性地访问指定网址
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | No | 需要访问的初始网址,可选参数,不填则只打开浏览器 |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "需要访问的初始网址,可选参数,不填则只打开浏览器",
"type": "string"
}
},
"required": [],
"type": "object"
}