-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnightwatch.conf.js
264 lines (237 loc) · 7.6 KB
/
nightwatch.conf.js
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
// Refer to the online docs for more details:
// https://nightwatchjs.org/gettingstarted/configuration/
//
// _ _ _ _ _ _ _
// | \ | |(_) | | | | | | | |
// | \| | _ __ _ | |__ | |_ __ __ __ _ | |_ ___ | |__
// | . ` || | / _` || '_ \ | __|\ \ /\ / / / _` || __| / __|| '_ \
// | |\ || || (_| || | | || |_ \ V V / | (_| || |_ | (__ | | | |
// \_| \_/|_| \__, ||_| |_| \__| \_/\_/ \__,_| \__| \___||_| |_|
// __/ |
// |___/
module.exports = {
// An array of folders (excluding subfolders) where your tests are located;
// if this is not specified, the test source must be passed as the second argument to the test runner.
src_folders: ["integration-testing"],
// See https://nightwatchjs.org/guide/concepts/page-object-model.html
page_objects_path: ["integration-testing/pages"],
// See https://nightwatchjs.org/guide/extending-nightwatch/adding-custom-commands.html
custom_commands_path: [],
// See https://nightwatchjs.org/guide/extending-nightwatch/adding-custom-assertions.html
custom_assertions_path: [],
// See https://nightwatchjs.org/guide/extending-nightwatch/adding-plugins.html
plugins: [],
// See https://nightwatchjs.org/guide/concepts/test-globals.html
globals_path: "",
webdriver: {},
test_workers: {
enabled: true,
},
test_settings: {
default: {
disable_error_log: false,
launch_url: "http://localhost:8080",
screenshots: {
enabled: true,
path: "screens",
on_failure: true,
},
desiredCapabilities: {
browserName: "chrome",
javascriptEnabled: true,
acceptSslCerts: true,
browserName: "chrome",
chromeOptions: {
args: ["headless", "no-sandbox", "disable-gpu"],
},
},
webdriver: {
start_process: true,
server_path: "",
},
test_runner: {
// set cucumber as the runner
// For more info on using CucumberJS with Nightwatch, visit:
// https://nightwatchjs.org/guide/writing-tests/using-cucumberjs.html
type: "cucumber",
src_folders: ["integration-testing/step_definitions"],
// define cucumber specific options
options: {
//set the feature path
feature_path: "integration-testing/features",
// start the webdriver session automatically (enabled by default)
// auto_start_session: true
// use parallel execution in Cucumber
// parallel: 2 // set number of workers to use (can also be defined in the cli as --parallel 2
},
},
},
firefox: {
desiredCapabilities: {
browserName: "firefox",
alwaysMatch: {
acceptInsecureCerts: true,
"moz:firefoxOptions": {
args: [
// '-headless',
// '-verbose'
],
},
},
},
webdriver: {
start_process: true,
server_path: "",
cli_args: [
// very verbose geckodriver logs
// '-vv'
],
},
},
chrome: {
desiredCapabilities: {
browserName: "chrome",
},
webdriver: {
start_process: true,
server_path: "",
cli_args: [
// --verbose
],
},
},
edge: {
desiredCapabilities: {
browserName: "MicrosoftEdge",
"ms:edgeOptions": {
w3c: true,
// More info on EdgeDriver: https://docs.microsoft.com/en-us/microsoft-edge/webdriver-chromium/capabilities-edge-options
args: [
//'--headless'
],
},
},
webdriver: {
start_process: true,
// Follow https://docs.microsoft.com/en-us/microsoft-edge/webdriver-chromium/?tabs=c-sharp#download-microsoft-edge-webdriver
// to download the Edge WebDriver and set the location of extracted `msedgedriver` below:
server_path: "",
cli_args: [
// --verbose
],
},
},
"android.real.firefox": {
desiredCapabilities: {
real_mobile: true,
browserName: "firefox",
acceptInsecureCerts: true,
"moz:firefoxOptions": {
args: [
// '-headless',
// '-verbose'
],
androidPackage: "org.mozilla.firefox",
// add the device serial to run tests on, if multiple devices are online
// Run command: `$ANDROID_HOME/platform-tools/adb devices`
// androidDeviceSerial: 'ZD2222W62Y'
},
},
webdriver: {
start_process: true,
server_path: "",
cli_args: [
// very verbose geckodriver logs
// '-vv'
],
},
},
"android.emulator.firefox": {
desiredCapabilities: {
real_mobile: false,
avd: "nightwatch-android-11",
browserName: "firefox",
acceptInsecureCerts: true,
"moz:firefoxOptions": {
args: [
// '-headless',
// '-verbose'
],
androidPackage: "org.mozilla.firefox",
// add the device serial to run tests on, if multiple devices are online
// Run command: `$ANDROID_HOME/platform-tools/adb devices`
// androidDeviceSerial: 'ZD2222W62Y'
},
},
webdriver: {
start_process: true,
server_path: "",
cli_args: [
// very verbose geckodriver logs
// '-vv'
],
},
},
"android.real.chrome": {
desiredCapabilities: {
real_mobile: true,
browserName: "chrome",
"goog:chromeOptions": {
// More info on Chromedriver: https://sites.google.com/a/chromium.org/chromedriver/
//
// w3c:false tells Chromedriver to run using the legacy JSONWire protocol (not required in Chrome 78)
w3c: true,
args: [
//'--no-sandbox',
//'--ignore-certificate-errors',
//'--allow-insecure-localhost',
//'--headless'
],
androidPackage: "com.android.chrome",
// add the device serial to run tests on, if multiple devices are online
// Run command: `$ANDROID_HOME/platform-tools/adb devices`
// androidDeviceSerial: ''
},
},
webdriver: {
start_process: true,
server_path: "",
cli_args: [
// --verbose
],
},
},
"android.emulator.chrome": {
desiredCapabilities: {
real_mobile: false,
avd: "nightwatch-android-11",
browserName: "chrome",
"goog:chromeOptions": {
// More info on Chromedriver: https://sites.google.com/a/chromium.org/chromedriver/
//
// w3c:false tells Chromedriver to run using the legacy JSONWire protocol (not required in Chrome 78)
w3c: true,
args: [
//'--no-sandbox',
//'--ignore-certificate-errors',
//'--allow-insecure-localhost',
//'--headless'
],
androidPackage: "com.android.chrome",
// add the device serial to run tests on, if multiple devices are online
// Run command: `$ANDROID_HOME/platform-tools/adb devices`
// androidDeviceSerial: ''
},
},
webdriver: {
start_process: true,
// path to chromedriver executable which can work with the factory
// version of Chrome mobile browser on the emulator (version 83).
server_path: "chromedriver-mobile/chromedriver.exe",
cli_args: [
// --verbose
],
},
},
},
};