Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nightwatchjs/selenium-server-jar-download
NPM install wrapper which makes available the selenium standalone server jar file in your node_modules folder.
https://github.com/nightwatchjs/selenium-server-jar-download
Last synced: about 2 months ago
JSON representation
NPM install wrapper which makes available the selenium standalone server jar file in your node_modules folder.
- Host: GitHub
- URL: https://github.com/nightwatchjs/selenium-server-jar-download
- Owner: nightwatchjs
- License: mit
- Created: 2022-02-19T18:11:59.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-16T11:58:40.000Z (7 months ago)
- Last Synced: 2024-10-30T00:55:18.059Z (about 2 months ago)
- Language: JavaScript
- Size: 171 KB
- Stars: 0
- Watchers: 3
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# selenium-server-jar-download
NPM install wrapper which makes available the selenium standalone server jar file in your node_modules folder.[![Build Status][build-badge]][build]
[![version][version-badge]][package]## Installing Selenium 4
This will download the jar file.```sh
npm i @nightwatch/selenium-server
```Install a specific version, e.g. `4.1.1`:
```sh
npm i @nightwatch/[email protected]
```### Installing Selenium 3
This will install the last Selenium 3 standalone server, version: `3.150.0````sh
npm i @nightwatch/selenium-server@3
```# Usage
```js
const SeleniumServer = require('@nightwatch/selenium-server');// Get the path to the jar file:
console.log(SeleniumServer.path);
```The file is downloaded in `node_modules/@nightwatch/selenium-server/lib`.
# License
MIT[build-badge]: https://github.com/beatfactor/selenium-server-jar-download/actions/workflows/node.js.yml/badge.svg?branch=main
[build]: https://github.com/beatfactor/selenium-server-jar-download/actions/workflows/node.js.yml
[version-badge]: https://img.shields.io/npm/v/@nightwatch/selenium-server.svg?style=flat-square
[package]: https://www.npmjs.com/package/@nightwatch/selenium-server