browser_resize
Adjust browser window dimensions to specified width and height for accurate web interaction and testing using Playwright MCP automation.
Instructions
Resize the browser window
Input Schema
Name | Required | Description | Default |
---|---|---|---|
height | Yes | Height of the browser window | |
width | Yes | Width of the browser window |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"height": {
"description": "Height of the browser window",
"type": "number"
},
"width": {
"description": "Width of the browser window",
"type": "number"
}
},
"required": [
"width",
"height"
],
"type": "object"
}