browser_execute_script
Execute JavaScript code within the current web page to automate browser interactions, manipulate page elements, or perform custom web testing operations.
Instructions
Execute JavaScript in the context of the current page
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"
}