browser_resize
Adjust browser window dimensions to specific width and height values for testing responsive web designs or simulating different screen sizes.
Instructions
Resize the browser window
Input Schema
Name | Required | Description | Default |
---|---|---|---|
height | Yes | New height of the browser window | |
width | Yes | New width of the browser window |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"height": {
"description": "New height of the browser window",
"type": "number"
},
"width": {
"description": "New width of the browser window",
"type": "number"
}
},
"required": [
"width",
"height"
],
"type": "object"
}