browser_execute_script
Execute JavaScript code within browser sessions to manipulate web content, extract data, or modify page behavior for testing and automation purposes.
Instructions
Execute JavaScript in the browser context
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| script | Yes | JavaScript code to execute |
Input Schema (JSON Schema)
{
"properties": {
"script": {
"description": "JavaScript code to execute",
"type": "string"
}
},
"required": [
"script"
],
"type": "object"
}