-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnightwatch.json
44 lines (42 loc) · 1.11 KB
/
nightwatch.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
35
36
37
38
39
40
41
42
43
44
{
"src_folders": [
"tests/e2e"
],
"output_folder": "reports",
"custom_commands_path": "commands",
"custom_assertions_path": "assertions",
"page_objects_path": "",
"globals_path": "tests/globalsModule.js",
"selenium": {
"start_process": false
},
"test_settings": {
"default": {
"selenium_port": 9515,
"selenium_host": "localhost",
"default_path_prefix": "",
"silent": true,
"screenshots": {
"enabled": true,
"on_failure": true,
"on_error": true,
"path": "results/screenshots"
},
"desiredCapabilities": {
"browserName": "chrome",
"javascriptEnabled": true,
"acceptSslCerts": true,
"chromeOptions": {
"args": [
"start-maximized"
]
}
}
},
"chrome": {
"desiredCapabilities": {
"browserName": "chrome"
}
}
}
}