Skip to content

Commit 5bfebb6

Browse files
authored
fix: Update chromedriver download base url (#875)
1 parent e1f8efd commit 5bfebb6

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

lib/compute-download-urls.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -272,11 +272,7 @@ async function getLatestGeckodriver(opts, browserDriver, url) {
272272
}
273273
}
274274

275-
function resolveDownloadUrl(
276-
platform,
277-
buildId,
278-
baseUrl = 'https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing'
279-
) {
275+
function resolveDownloadUrl(platform, buildId, baseUrl = 'https://storage.googleapis.com/chrome-for-testing-public') {
280276
return `${baseUrl}/${resolveDownloadPath(platform, buildId).join('/')}`;
281277
}
282278

lib/default-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = () => {
88
channel: 'stable',
99
arch: process.arch,
1010
onlyDriverArgs: [],
11-
baseURL: 'https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing',
11+
baseURL: 'https://storage.googleapis.com/chrome-for-testing-public',
1212
},
1313
firefox: {
1414
version: 'latest',

0 commit comments

Comments
 (0)