Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: giggio/node-chromedriver
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 122.0.1
Choose a base ref
...
head repository: giggio/node-chromedriver
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 122.0.2
Choose a head ref
  • 1 commit
  • 4 files changed
  • 1 contributor

Commits on Feb 22, 2024

  1. Update dependencies and change proxy impl

    giggio committed Feb 22, 2024
    Copy the full SHA
    2cfb625 View commit details
Showing with 324 additions and 69 deletions.
  1. +2 −2 .github/workflows/build.yml
  2. +22 −40 install.js
  3. +296 −23 package-lock.json
  4. +4 −4 package.json
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -75,7 +75,7 @@ jobs:
node: ["20", "21"]
steps:
- uses: actions/checkout@v4
- uses: uraimo/run-on-arch-action@v2.6.0
- uses: uraimo/run-on-arch-action@v2.7.1
name: Verify install
id: build
with:
@@ -119,7 +119,7 @@ jobs:
node: ["18", "20", "21"]
steps:
- uses: actions/checkout@v4
- uses: uraimo/run-on-arch-action@v2.6.0
- uses: uraimo/run-on-arch-action@v2.7.1
name: Verify install
id: build
with:
62 changes: 22 additions & 40 deletions install.js
Original file line number Diff line number Diff line change
@@ -3,20 +3,16 @@

const fs = require('node:fs');
const helper = require('./lib/chromedriver');
const axios = require('axios');
const axios = require('axios').default;
const path = require('node:path');
const child_process = require('node:child_process');
const os = require('node:os');
const url = require('node:url');
const https = require('node:https');
const { ProxyAgent } = require('proxy-agent');
const { promisify } = require('node:util');
const { finished } = require('node:stream');
const extractZip = require('extract-zip');
const { getChromeVersion } = require('@testim/chrome-version');
const HttpsProxyAgent = require('https-proxy-agent');
const getProxyForUrl = require("proxy-from-env").getProxyForUrl;
const { compareVersions } = require('compare-versions');

const finishedAsync = promisify(finished);

const skipDownload = (process.env.npm_config_chromedriver_skip_download || process.env.CHROMEDRIVER_SKIP_DOWNLOAD) === 'true';
@@ -227,19 +223,8 @@ function findSuitableTempDirectory(chromedriverVersion) {
function getRequestOptions(downloadPath) {
/** @type import('axios').AxiosRequestConfig */
const options = { url: downloadPath, method: "GET" };
const urlParts = url.parse(downloadPath);
const urlParts = new URL(downloadPath);
const isHttps = urlParts.protocol === 'https:';
const proxyUrl = getProxyForUrl(downloadPath);

if (proxyUrl) {
const proxyUrlParts = url.parse(proxyUrl);
if (proxyUrlParts.hostname && proxyUrlParts.protocol)
options.proxy = {
host: proxyUrlParts.hostname,
port: proxyUrlParts.port ? parseInt(proxyUrlParts.port) : 80,
protocol: proxyUrlParts.protocol
};
}

if (isHttps) {
// Use certificate authority settings from npm
@@ -255,22 +240,22 @@ function getRequestOptions(downloadPath) {
}
console.log('Using npmconf cafile.');
}

options.httpsAgent = new ProxyAgent({
rejectUnauthorized: !!process.env.npm_config_strict_ssl,
ca: ca
});
options.proxy = false;
} else {
const { getProxyForUrl } = require("proxy-from-env");
const proxyUrl = getProxyForUrl(downloadPath);
if (proxyUrl) {
console.log('Using workaround for https-url combined with a proxy.');
const httpsProxyAgentOptions = url.parse(proxyUrl);
// @ts-ignore
httpsProxyAgentOptions.ca = ca;
// @ts-ignore
httpsProxyAgentOptions.rejectUnauthorized = !!process.env.npm_config_strict_ssl;
// @ts-ignore
options.httpsAgent = new HttpsProxyAgent(httpsProxyAgentOptions);
options.proxy = false;
} else {
options.httpsAgent = new https.Agent({
rejectUnauthorized: !!process.env.npm_config_strict_ssl,
ca: ca
});
const proxyUrlParts = new URL(proxyUrl);
if (proxyUrlParts.hostname && proxyUrlParts.protocol)
options.proxy = {
host: proxyUrlParts.hostname,
port: proxyUrlParts.port ? parseInt(proxyUrlParts.port) : 80,
protocol: proxyUrlParts.protocol
};
}
}

@@ -294,12 +279,10 @@ async function getChromeDriverVersion(cdnUrl, legacyCdnUrl, majorVersion) {
let chromedriverVersion;
if (majorVersion) {
const requestOptions = getRequestOptions(`${cdnUrl}/chrome-for-testing/latest-versions-per-milestone.json`);
// @ts-expect-error
const response = await axios.request(requestOptions);
chromedriverVersion = response.data?.milestones[majorVersion.toString()]?.version;
} else {
const requestOptions = getRequestOptions(`${cdnUrl}/chrome-for-testing/last-known-good-versions.json`);
// @ts-expect-error
const response = await axios.request(requestOptions);
chromedriverVersion = response.data?.channels?.Stable?.version;
}
@@ -309,7 +292,6 @@ async function getChromeDriverVersion(cdnUrl, legacyCdnUrl, majorVersion) {
console.log('Finding Chromedriver version using legacy method.');
const urlPath = majorVersion ? `LATEST_RELEASE_${majorVersion}` : 'LATEST_RELEASE';
const requestOptions = getRequestOptions(`${legacyCdnUrl}/${urlPath}`);
// @ts-expect-error
const response = await axios.request(requestOptions);
const chromedriverVersion = response.data.trim();
console.log(`Chromedriver version is ${chromedriverVersion}.`);
@@ -326,7 +308,6 @@ async function getChromeDriverVersion(cdnUrl, legacyCdnUrl, majorVersion) {
async function getDownloadUrl(cdnUrl, version, platform) {
const getUrlUrl = `${cdnUrl}/chrome-for-testing/${version}.json`;
const requestOptions = getRequestOptions(getUrlUrl);
// @ts-expect-error
const response = await axios.request(requestOptions);
const url = response.data?.downloads?.chromedriver?.find((/** @type {{ platform: string; }} */ c) => c.platform == platform)?.url;
return url;
@@ -341,7 +322,6 @@ async function requestBinary(requestOptions, filePath) {
const outFile = fs.createWriteStream(filePath);
let response;
try {
// @ts-expect-error
response = await axios.request({ responseType: 'stream', ...requestOptions });
} catch (error) {
let errorData = '';
@@ -393,7 +373,8 @@ async function extractDownload(dirToExtractTo, chromedriverBinaryFilePath, downl
try {
await extractZip(path.resolve(downloadedFile), { dir: dirToExtractTo });
} catch (error) {
throw new Error('Error extracting archive: ' + error);
console.error('Error extracting archive: ' + error);
process.exit(1);
}
}

@@ -461,7 +442,8 @@ function isEmulatedRosettaEnvironment() {

// When run with `-in`, the return code is 0 even if there is no `sysctl.proc_translated`
if (proc.status) {
throw new Error('Unexpected return code from sysctl: ' + proc.status);
console.error('Unexpected return code from sysctl: ' + proc.status);
process.exit(1);
}

// If there is no `sysctl.proc_translated` (i.e. not rosetta) then nothing is printed to
319 changes: 296 additions & 23 deletions package-lock.json
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chromedriver",
"version": "122.0.1",
"version": "122.0.2",
"keywords": [
"chromedriver",
"selenium"
@@ -29,16 +29,16 @@
},
"dependencies": {
"@testim/chrome-version": "^1.1.4",
"axios": "^1.6.5",
"axios": "^1.6.7",
"compare-versions": "^6.1.0",
"extract-zip": "^2.0.1",
"https-proxy-agent": "^5.0.1",
"proxy-agent": "^6.4.0",
"proxy-from-env": "^1.1.0",
"tcp-port-used": "^1.0.2"
},
"devDependencies": {
"eslint": "^8.56.0",
"semver": "^7.5.4",
"semver": "^7.6.0",
"typescript": "^5.3.3"
},
"engines": {