-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnightwatch.json
34 lines (31 loc) · 936 Bytes
/
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
{
"src_folders": ["integration/nightwatch/tests/"],
"output_folder": "./bin/nightwatch",
"custom_assertions_path": "",
"page_objects_path": "./integration/nightwatch/pageObjects",
"globals_path": "./integration/nightwatch/globalsModule.js",
"selenium": {
"start_process": false
},
"test_settings": {
"default": {
"launch_url": "https://dev1.scrambledbits.org:4500",
"selenium_port": 9515,
"selenium_host": "localhost",
"default_path_prefix" : "",
"desiredCapabilities": {
"browserName": "chrome",
"comment": "'window-size=1920,1080', 'headless', 'disable-dev-shm-usage'",
"chromeOptions": {
"args": ["no-sandbox", "window-size=1920,1080", "headless", "disable-dev-shm-usage"]
},
"acceptSslCerts": true
}
},
"chrome": {
"desiredCapabilities": {
"browserName": "chrome"
}
}
}
}