UNPKG

407 BMarkdownView Raw
1# Intro
2
3Node wrapper for Selenium
4
5# Install
6
7 npm install -g selenium-server
8
9# Use
10
11 selenium &
12
13# Using via node
14
15The package exports a `path` string that contains the path to the
16selenium server binary/executable.
17
18Below is an example of using this package via node.
19
20```javascript
21var seleniumServer = require('selenium-server');
22var binPath = seleniumServer.path;
23console.log(binPath);
24...
25```