selenium-standalone
Version:
installs a `selenium-standalone` command line to install and start a standalone selenium server
17 lines (10 loc) • 473 B
Markdown
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
- [Running headlessly](#running-headlessly)
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
### Running headlessly
On linux,
To run headlessly, you can use [xvfb](https://en.wikipedia.org/wiki/Xvfb):
```shell
xvfb-run --server-args="-screen 0, 1366x768x24" selenium-standalone start
```