-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnightwatch.json
56 lines (51 loc) · 1.22 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"src_folders" : ["e2e"],
"output_folder" : "reports",
"custom_commands_path" : "e2e/custom/command",
"custom_assertions_path" : "e2e/custom/assertion",
"page_objects_path" : "",
"live_output" : false,
"parallel_process_delay" : 500,
"test_workers" : false,
"selenium" : {
"start_process" : true,
"server_path" : "selenium-server-standalone-2.48.2.jar",
"log_path" : false,
"host" : "127.0.0.1",
"port" : 4445,
"cli_args" : {
"webdriver.chrome.driver" : "/usr/local/bin/chromedriver",
"webdriver.ie.driver" : ""
}
},
"test_settings" : {
"default" : {
"launch_url" : "http://localhost:3000",
"selenium_port" : 4445,
"selenium_host" : "localhost",
"silent" : true,
"output" : true,
"disable_colors" : false,
"screenshots" : {
"enabled" : false
},
"desiredCapabilities": {
"browserName": "firefox",
"javascriptEnabled": true,
"acceptSslCerts": true
},
"exclude": "e2e/custom/**/*.js",
"filter": "e2e/**/*.js",
"log_screenshot_data" : false,
"end_session_on_fail" : true,
"skip_testcases_on_fail": false
},
"chrome" : {
"desiredCapabilities": {
"browserName": "chrome",
"javascriptEnabled": true,
"acceptSslCerts": true
}
}
}
}