Socket
Socket
Sign inDemoInstall

webdriver-manager

Package Overview
Dependencies
Maintainers
3
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webdriver-manager

A selenium server and browser driver manager for your end to end tests.


Version published
Weekly downloads
794K
decreased by-4.1%
Maintainers
3
Weekly downloads
 
Created

What is webdriver-manager?

The webdriver-manager npm package is a tool for managing WebDriver binaries. It is commonly used to download, update, and start WebDriver binaries for Selenium WebDriver, making it easier to set up and manage the necessary components for running automated browser tests.

What are webdriver-manager's main functionalities?

Download WebDriver binaries

This feature allows you to download the necessary WebDriver binaries for your browser. The `update` method fetches the latest versions of the binaries and stores them locally.

const webdriverManager = require('webdriver-manager');
webdriverManager.update();

Start WebDriver server

This feature starts the WebDriver server, which is necessary for running Selenium WebDriver tests. The `start` method launches the server and makes it ready to accept WebDriver commands.

const webdriverManager = require('webdriver-manager');
webdriverManager.start();

Stop WebDriver server

This feature stops the WebDriver server. The `shutdown` method gracefully stops the server, ensuring that all resources are properly released.

const webdriverManager = require('webdriver-manager');
webdriverManager.shutdown();

Other packages similar to webdriver-manager

Keywords

FAQs

Package last updated on 31 Jul 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc