-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnightwatch.json
More file actions
31 lines (31 loc) · 809 Bytes
/
nightwatch.json
File metadata and controls
31 lines (31 loc) · 809 Bytes
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
{
"src_folders": ["./end2end"],
"output_folder": "reports",
"selenium": {
"start_process": true,
"server_path": "./drivers/selenium-server-standalone-3.9.1.jar",
"log_path": "",
"port": 4448,
"cli_args": {
"webdriver.chrome.driver": "./drivers/chromedriver"
}
},
"test_settings": {
"default": {
"launch_url": "http://localhost:9876",
"selenium_port": 4448,
"selenium_host": "localhost",
"screenshots": {
"enabled": false,
"path": "./reports/"
},
"desiredCapabilities": {
"browserName": "chrome",
"javascriptEnabled": true,
"acceptSslCerts": true,
"elementScrollBehavior": 1,
"marionette": true
}
}
}
}