chromedriver 117.0.2 → 117.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/install.js +1 -0
  2. package/package.json +1 -1
package/install.js CHANGED
@@ -359,6 +359,7 @@ async function requestBinary(requestOptions, filePath) {
359
359
  */
360
360
  async function extractDownload(dirToExtractTo, chromedriverBinaryFilePath, downloadedFile) {
361
361
  if (path.extname(downloadedFile) !== '.zip') {
362
+ fs.mkdirSync(path.dirname(chromedriverBinaryFilePath), {recursive: true});
362
363
  fs.copyFileSync(downloadedFile, chromedriverBinaryFilePath);
363
364
  console.log('Skipping zip extraction - binary file found.');
364
365
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chromedriver",
3
- "version": "117.0.2",
3
+ "version": "117.0.3",
4
4
  "keywords": [
5
5
  "chromedriver",
6
6
  "selenium"