Selenium in an npm package


Keywords
bdd, tdd, selenium, server, standalone, testing
License
BSD-3-Clause
Install
npm install selenium-server@3.9.0

Documentation

Intro

Node wrapper for Selenium

Install

npm install -g selenium-server

Use

selenium &

Using via node

The package exports a path string that contains the path to the selenium server binary/executable.

Below is an example of using this package via node.

var seleniumServer = require('selenium-server');
var binPath = seleniumServer.path;
console.log(binPath);
...