-
-
Notifications
You must be signed in to change notification settings - Fork 221
/
Copy pathdefault-config.js
31 lines (30 loc) · 884 Bytes
/
default-config.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
module.exports = () => {
return {
baseURL: 'https://github.com/SeleniumHQ/selenium/releases/download',
version: process.env.SELENIUM_VERSION || '4.10.0',
/** @type {import("./start").Drivers} */
drivers: {
chrome: {
version: 'latest',
channel: 'stable',
arch: process.arch,
onlyDriverArgs: [],
baseURL: 'https://storage.googleapis.com/chrome-for-testing-public',
},
firefox: {
version: 'latest',
fallbackVersion: '0.30.0',
arch: process.arch,
onlyDriverArgs: [],
baseURL: 'https://github.com/mozilla/geckodriver/releases/download',
},
chromiumedge: {
version: 'latest',
fallbackVersion: '117.0.2045.55',
arch: process.arch,
onlyDriverArgs: [],
baseURL: 'https://msedgedriver.azureedge.net',
},
},
};
};