browser_resize
Resize browser windows to specified dimensions for precise testing and interaction on web pages, ensuring accurate layout and functionality verification.
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"
}