# selenium-standalone-painful

> installs a `start-selenium` command line to start a standalone selenium server with chrome-driver

Latest version **2.39.0-2.7.0** (published 2013-12-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install selenium-standalone-painful
pnpm add selenium-standalone-painful
yarn add selenium-standalone-painful
bun add selenium-standalone-painful
```

Provides the command `start-selenium`.

## Health

**Score 0/100 (F)** — status: abandoned.

Warnings: low downloads; no types; no esm support; low quality score.

Negative: high vulnerabilities; abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 2.39.0-2.7.0 |
| Published | 2013-12-19 |
| First published | 2013-12-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 5 |
| Known vulnerabilities | 1 (+2 in 1 direct dependencies) |
| Install scripts | yes |
| Author | Nicolas Bevacqua |
| Maintainers | bevacqua |

## Links

- npm: https://www.npmjs.com/package/selenium-standalone-painful
- npm.io page: https://npm.io/package/selenium-standalone-painful

## Dependencies (5)

- [async](https://npm.io/package/async.md) ~0.2.9
- [unzip](https://npm.io/package/unzip.md) ~0.1.9
- [mkdirp](https://npm.io/package/mkdirp.md) ~0.3.5
- [rimraf](https://npm.io/package/rimraf.md) ~2.2.2
- [request](https://npm.io/package/request.md) ~2.27.0

## Recent versions

- 2.39.0-2.7.0 (latest) — 2013-12-19

## README

# selenium-standalone-painful

Intalls a `start-selenium` command line starting a selenium standalone
server along with the chromedriver.

Currently installs selenium `2.37.0` and chrome driver `2.6`.

```shell
npm install selenium-standalone-painful -g
start-selenium
```

## Example: launch www.google.com

Using a selenium driver like [wd](https://github.com/admc/wd):

```shell
npm install wd -g
wd shell
(wd): browser = wd.remote(); browser.init(function(){browser.get('http://www.google.com')})
```

## Programmatic use

```
var selenium = require('selenium-standalone-painful');
var spawnOptions = { stdio: 'pipe' };
var server = selenium.start(spawnOptions);

server.stdout.on('data', function(output) {
  console.log(output);
});
```

`selenium-standalone` versions maps `selenium` versions.

---
_Source: https://npm.io/package/selenium-standalone-painful · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
