-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnightwatch.json
92 lines (85 loc) · 2.01 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"src_folders" : ["."],
"output_folder" : "./reports",
"disable_colors": false,
"test_workers" : false,
"webdriver" : {
"start_process": false,
"host": "localhost",
"port": 4444
},
"test_settings" : {
"default" : {
"webdriver": {
"server_path": "./bin/geckodriver-0.20",
"cli_args": [
"--log", "debug"
]
},
"disable_colors": false,
"screenshots" : {
"enabled" : false,
"path" : ""
},
"request_timeout_options": {
"timeout": 60000,
"retry_attempts": 5
},
"filter": ["./examples/tests"],
"desiredCapabilities" : {
"browserName" : "firefox",
"acceptInsecureCerts" : true
}
},
"chrome" : {
"webdriver": {
"port": 9515,
"default_path_prefix": "",
"server_path": "./bin/chromedriver-2.32",
"cli_args": [
"--verbose"
]
},
"desiredCapabilities" : {
"browserName" : "chrome",
"loggingPrefs": {"driver": "INFO", "server": "OFF", "browser": "INFO"}
}
},
"unit_tests" : {
"unit_tests_mode" : true,
"filter" : "./examples/unittests/*",
"exclude" : ""
},
"mocha" : {
"webdriver" : {
"default_path_prefix": "",
"server_path": "./bin/chromedriver-2.32",
"cli_args": [
"--verbose"
]
},
"desiredCapabilities" : {
"browserName" : "chrome"
},
"test_runner" : {
"type" : "mocha"
}
},
"selenium_server" : {
"selenium" : {
"start_process": true,
"host": "localhost",
"port": 4444,
"server_path": "./bin/selenium-server-standalone-3.10.0.jar",
"cli_args": {
"webdriver.gecko.driver": "./bin/geckodriver-0.19",
"webdriver.chrome.driver": "./bin/chromedriver-2.32"
}
},
"desiredCapabilities" : {
"browserName" : "firefox",
"acceptSslCerts": true
}
}
}
}