Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/eugeneware/selenium-server

Node wrapper for Selenium Server
https://github.com/eugeneware/selenium-server

Last synced: 2 months ago
JSON representation

Node wrapper for Selenium Server

Awesome Lists containing this project

README

        

# 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.

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