-
Notifications
You must be signed in to change notification settings - Fork 0
/
nightwatch.conf.js
118 lines (118 loc) · 2.95 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
// https://nightwatchjs.org/gettingstarted/configuration/
module.exports = {
src_folders: [],
page_objects_path: ['test/e2e/pages'],
custom_commands_path: ['node_modules/nightwatch/examples/custom-commands/'],
custom_assertions_path: '',
plugins: [],
globals_path: 'test/config.js',
webdriver: {},
test_settings: {
testing: {
desiredCapabilities: {
browserName: 'chrome',
'goog:chromeOptions': {
w3c: true,
args: [
'--no-sandbox',
'--ignore-certificate-errors',
'--allow-insecure-localhost',
'--headless',
'--disable-gpu'
]
}
},
webdriver: {
start_process: true,
server_path: '/usr/bin/chromedriver',
cli_args: [
// --verbose
]
}
},
default: {
disable_error_log: false,
// eslint-disable-next-line no-template-curly-in-string
launch_url: '${APP_URL}',
screenshots: {
enabled: false,
path: 'screens',
on_failure: true
},
desiredCapabilities: {
browserName: 'firefox'
},
webdriver: {
start_process: true,
server_path: ''
}
},
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',
'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',
'--disable-gpu'
]
}
},
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,
// Download msedgedriver from https://docs.microsoft.com/en-us/microsoft-edge/webdriver-chromium/
// and set the location below:
server_path: '',
cli_args: [
// --verbose
]
}
}
}
}