playwright_evaluate
Execute JavaScript directly in the browser console to interact with web pages, extract data, or manipulate content using Playwright automation.
Instructions
Execute JavaScript in the browser console
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"
}