-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnightwatch.json
More file actions
33 lines (31 loc) · 769 Bytes
/
nightwatch.json
File metadata and controls
33 lines (31 loc) · 769 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
32
33
{
"src_folders" : ["e2e-tests"],
"output_folder" : "reports",
"selenium" : {
"start_process" : true,
"server_path" : "./bin/selenium-server-standalone-3.6.0.jar",
"log_path" : "",
"port" : 4445,
"cli_args" : {
"webdriver.chrome.driver" : "./bin/chromedriver"
}
},
"test_settings" : {
"default" : {
"launch_url" : "http://localhost:3000",
"selenium_port" : 4445,
"selenium_host" : "localhost",
"desiredCapabilities": {
"browserName": "chrome",
"javascriptEnabled": true,
"acceptSslCerts" : true
}
},
"desiredCapabilities" : {
"browserName" : "chrome",
"javascriptEnabled" : true,
"acceptSslCerts": true,
"marionette" : true
}
}
}