resize
Adjust browser viewport dimensions to specified width and height for precise web automation, testing, or scraping tasks using Playwright integration.
Instructions
Resize the browser viewport
Input Schema
Name | Required | Description | Default |
---|---|---|---|
height | Yes | ||
width | Yes |
Input Schema (JSON Schema)
{
"properties": {
"height": {
"type": "number"
},
"width": {
"type": "number"
}
},
"required": [
"width",
"height"
],
"type": "object"
}