browserbase_stagehand_act
Execute specific browser actions like clicking buttons or typing text to automate web interactions and perform tasks on web pages.
Instructions
Perform a single action on the page (e.g., click, type).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | The action to perform. Should be as atomic and specific as possible, i.e. 'Click the sign in button' or 'Type 'hello' into the search input'. | |
| variables | No | Variables used in the action template. ONLY use variables if you're dealing with sensitive data or dynamic content. When using variables, you MUST have the variable key in the action template. ie: {"action": "Fill in the password", "variables": {"password": "123456"}} |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "The action to perform. Should be as atomic and specific as possible,\n i.e. 'Click the sign in button' or 'Type 'hello' into the search input'.",
"type": "string"
},
"variables": {
"additionalProperties": false,
"description": "Variables used in the action template. ONLY use variables if you're dealing\n with sensitive data or dynamic content. When using variables, you MUST have the variable\n key in the action template. ie: {\"action\": \"Fill in the password\", \"variables\": {\"password\": \"123456\"}}",
"properties": {},
"type": "object"
}
},
"required": [
"action"
],
"type": "object"
}