systelab-components-wdio-test
Version:
Widgets to be use in the E2E Tests based in WDIO
19 lines (18 loc) • 569 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://www.werfen.com/window-size-request-schema.json",
"title": "Schema for a request to set the browser window size of the application managed by WDIO REST API",
"type": "object",
"properties": {
"width": {
"type": "integer",
"description": "Window width"
},
"height": {
"type": "integer",
"description": "Window height"
}
},
"required": ["width", "height"],
"additionalProperties": false
}