NPM install wrapper which makes available the selenium standalone server jar file in your node_modules folder.
This will download the jar file.
npm i @nightwatch/selenium-serverInstall a specific version, e.g. 4.1.1:
npm i @nightwatch/[email protected]This will install the last Selenium 3 standalone server, version: 3.150.0
npm i @nightwatch/selenium-server@3const SeleniumServer = require('@nightwatch/selenium-server');
// Get the path to the jar file:
console.log(SeleniumServer.path);The file is downloaded in node_modules/@nightwatch/selenium-server/lib.
MIT