Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@sitespeed.io/chromedriver

sitespeedio13.8kMIT138.0.7204-49

Install and launch Chromedriver for Mac, Linux & Windows

webdriver, chromedriver, chrome

readme

Chromedriver

This is a simple package that downloads Chromedriver and provides a node api for accessing the path to the binary. We want to keep this with minimimal dependencies.

How to use?

const driver = require('@sitespeed.io/chromedriver');

const binPath = driver.binPath();
// launch chromedriver from binPath

You can override where you download the Chromedriver by setting process.env.CHROMEDRIVER_BASE_URL. You can skip downloading the Chromedriver by setting process.env.CHROMEDRIVER_SKIP_DOWNLOAD.

You can download another Chromedriver version by setting process.env.CHROMEDRIVER_VERSION.

CHROMEDRIVER_VERSION=81.0.4044.20 node install.js

If you don't set a version, the version in the package.json is used.