-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwalnut-config.json
34 lines (34 loc) · 921 Bytes
/
walnut-config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"walnut": {
"name": "walnut sample automation",
"enableDebug": false,
"reports": "./reports",
"noScreenshot": false,
"launchReport": true,
"paths": {
"locators": "./test/locators",
"evidences": "./test/photos",
"parameters": "./test/params/my-params.json"
}
},
"cucumber": {
"steps": "./test/step_defs",
"timeout": 15000,
"features": "./test/features/**/*.feature",
"outputFormat": "summary"
},
"selenium": {
"browser": "chrome",
"browserTeardownStrategy": "none",
"remoteURL": "http://localhost:4444/wd/hub",
"caps": {
"browserName": "chrome",
"chromeOptions": {
"args": [
"start-maximized",
"disable-extensions"
]
}
}
}
}