scout_act
Execute browser actions: input text, scroll, click, and select options. Chain multiple steps for automated web page interaction.
Instructions
Execute actions on the page: input, scroll, click, or select.
Two modes:
Single step: scout_act("scroll", "bottom") scout_act("input", "python教程", target="搜索") scout_act("click", target="下一页") scout_act("select", "最多播放", target="综合排序")
Chain: scout_act(actions=[ {"action": "input", "value": "python教程", "target": "搜索"}, {"action": "scroll", "value": "bottom"}, {"action": "click", "target": "最多播放"}, ])
Each step reports new API method + path inline so AI sees them immediately.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | No | Text input or scroll target (bottom/top/down/up/px). | |
| action | No | "input", "scroll", "click", or "select" (single mode). | |
| target | No | Visible text of the target element. | |
| actions | No | List of action dicts for chain mode. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |