systelab-components-wdio-test
Version:
Widgets to be use in the E2E Tests based in WDIO
20 lines (19 loc) • 723 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://www.werfen.com/application-start-request-schema.json",
"title": "Schema for a request to start an application to be managed by WDIO REST API",
"type": "object",
"properties": {
"browserType": {
"type": "string",
"enum": ["Chrome", "Edge", "Firefox", "Safari", "WebKitGTK", "TauriApp"],
"description": "Type of browser for the application to be started"
},
"options": {
"type": "object",
"description": "WDIO options for the application to be started"
}
},
"required": ["browserType", "options"],
"additionalProperties": false
}