shaka-project / webdriver-installer

Install the right WebDriver version for your local browsers, automatically.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WebDriver Installer for NodeJS

Install the right WebDriver version for your local browsers, automatically.

This tool will check the versions of your local browsers, determine the correct version of each corresponding WebDriver binary, and download and install the driver binaries automatically.

It can be run as a command-line tool, or as a Node module.

Installation

To install the tool globally for CLI usage:

npm install -g webdriver-installer

CLI Usage

Here's an example of CLI usage:

webdriver-installer /path/to/webdriver-binaries/

Module Usage

const {installWebDrivers} = require('webdriver-installer');

async function foo() {
  const withLogging = true;
  await installWebDrivers('/path/to/webdriver-binaries/', withLogging);
}

About

Install the right WebDriver version for your local browsers, automatically.

License:Apache License 2.0


Languages

Language:JavaScript 100.0%