-
Notifications
You must be signed in to change notification settings - Fork 104
/
nightwatch.json
63 lines (63 loc) · 1.88 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
57
58
59
60
61
62
63
{
"src_folders" : ["tests_e2e/tests"],
"output_folder": "tests_e2e/reports",
"custom_commands_path": "",
"custom_assertions_path": "",
"page_objects_path": "",
"globals_path": "",
"selenium": {
"start_process": true,
"start_session": true,
"server_path": "tests_e2e/bin/selenium.jar",
"log_path": "tests_e2e",
"port": 4444,
"cli_args": {
"webdriver.chrome.driver": "tests_e2e/bin/chromedriver"
}
},
"test_settings": {
"default": {
"launch_url" : "http://localhost",
"selenium_port" : 4444,
"selenium_host": "localhost",
"request_timeout_options": {
"timeout": 60000,
"retry_attempts": 0
},
"silent": true,
"output": true,
"screenshots": {
"enabled" : false,
"path" : "tests/e2e/screenshots",
"on_failure": true,
"on_error" : false
},
"desiredCapabilities": {
"browserName": "chrome",
"javascriptEnabled": true,
"acceptSslCerts": true
},
"disable_colors": false,
"globals" : {},
"use_xpath": false,
"detailed_output": false,
"end_session_on_fail": false,
"skip_testcases_on_fail": false,
"persist_globals": true
},
"chrome" : {
"desiredCapabilities": {
"headless": true,
"disableGpu": true,
"chromeOptions" : {
"args" : ["--headless", "--disable-gpu"]
}
}
}
},
"live_output": false,
"disable_colors": false,
"parallel_process_delay": 10,
"test_workers": false,
"test_runner": "default"
}