d11 theme
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
rdrew f035d16951 lots of layout changes + sidbars 2 weeks ago
..
.github/workflows lots of layout changes + sidbars 2 weeks ago
chrome-finder lots of layout changes + sidbars 2 weeks ago
test lots of layout changes + sidbars 2 weeks ago
.eslintrc.json lots of layout changes + sidbars 2 weeks ago
CODE_OF_CONDUCT.md lots of layout changes + sidbars 2 weeks ago
LICENSE lots of layout changes + sidbars 2 weeks ago
example.js lots of layout changes + sidbars 2 weeks ago
index.js lots of layout changes + sidbars 2 weeks ago
package.json lots of layout changes + sidbars 2 weeks ago
readme.MD lots of layout changes + sidbars 2 weeks ago

readme.MD

chrome-version

Build Status

Finds the version of Chrome (or Chromium) that is installed on your machine.

Installation

npm install @testim/chrome-version

Use

(async () => {
    const { getChromeVersion } = require('@testim/chrome-version');
    const includeChromium = false;  // NOTE: set to true to also search for Chromium
    const version = await getChromeVersion(includeChromium);
    console.log(version);
})();

Testing

npm test
  • If no version of chrome is installed on your machine getChromeVersion will return null.