browser_type
Input text into web elements using CSS selectors for automated browser interactions within Windows automation workflows.
Instructions
输入文本到元素
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| selector | Yes | CSS 选择器 | |
| text | Yes | 要输入的文本 | |
| sessionId | No | 会话 ID(可选) |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"description": "CSS 选择器",
"type": "string"
},
"sessionId": {
"description": "会话 ID(可选)",
"type": "string"
},
"text": {
"description": "要输入的文本",
"type": "string"
}
},
"required": [
"selector",
"text"
],
"type": "object"
}