lhl 7eff0e2ec0 1-9 3 months ago
..
bin 7eff0e2ec0 1-9 3 months ago
lib 7eff0e2ec0 1-9 3 months ago
LICENSE.md 7eff0e2ec0 1-9 3 months ago
README.md 7eff0e2ec0 1-9 3 months ago
package.json 7eff0e2ec0 1-9 3 months ago

README.md

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);
...