Няма описание

FFIB: 11e3a9652a first преди 7 години
..
bin 11e3a9652a first преди 7 години
lib 11e3a9652a first преди 7 години
README.md 11e3a9652a first преди 7 години
package.json 11e3a9652a first преди 7 години

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