项目作者: bonigarcia

项目描述 :
自动管理Selenium WebDriver二进制文件
高级语言: Java
项目地址: git://github.com/bonigarcia/webdrivermanager.git
创建时间: 2015-03-15T19:52:36Z
项目社区:https://github.com/bonigarcia/webdrivermanager

开源协议:Apache License 2.0

下载


Maven Central
Build Status
Quality Gate
codecov
badge-jdk
License badge
Backers on Open Collective
Sponsors on Open Collective
Support badge
Twitter Follow

WebDriverManager is an open-source Java library that carries out the management (i.e., download, setup, and maintenance) of the drivers required by Selenium WebDriver (e.g., chromedriver, geckodriver, msedgedriver, etc.) in a fully automated manner. In addition, WebDriverManager provides other relevant features, such as the capability to discover browsers installed in the local system, building WebDriver objects (such as ChromeDriver, FirefoxDriver, EdgeDriver, etc.), and running browsers in Docker containers seamlessly.

Documentation

As of version 5, the documentation of WebDriverManager has moved here. This site contains all the features, examples, configuration, and advanced capabilities of WebDriverManager.

Driver Management

The primary use of WebDriverManager is the automation of driver management. For using this feature, you need to select a given manager in the WebDriverManager API (e.g., chromedriver() for Chrome) and invoke the method setup(). The following example shows the skeleton of a test case using JUnit 5, Selenium WebDriver, and WebDriverManager.

  1. import org.junit.jupiter.api.AfterEach;
  2. import org.junit.jupiter.api.BeforeAll;
  3. import org.junit.jupiter.api.BeforeEach;
  4. import org.junit.jupiter.api.Test;
  5. import org.openqa.selenium.WebDriver;
  6. import org.openqa.selenium.chrome.ChromeDriver;
  7. import io.github.bonigarcia.wdm.WebDriverManager;
  8. class ChromeTest {
  9. WebDriver driver;
  10. @BeforeAll
  11. static void setupAll() {
  12. WebDriverManager.chromedriver().setup();
  13. }
  14. @BeforeEach
  15. void setup() {
  16. driver = new ChromeDriver();
  17. }
  18. @AfterEach
  19. void teardown() {
  20. driver.quit();
  21. }
  22. @Test
  23. void test() {
  24. // Your test logic here
  25. }
  26. }

Alternatively, you can use the method create() to manage automatically the driver and instantiate the WebDriver object in a single line. For instance, as follows:

  1. import org.junit.jupiter.api.AfterEach;
  2. import org.junit.jupiter.api.BeforeEach;
  3. import org.junit.jupiter.api.Test;
  4. import org.openqa.selenium.WebDriver;
  5. import org.openqa.selenium.chrome.ChromeDriver;
  6. import io.github.bonigarcia.wdm.WebDriverManager;
  7. class ChromeCreateTest {
  8. WebDriver driver;
  9. @BeforeEach
  10. void setup() {
  11. driver = WebDriverManager.chromedriver().create();
  12. }
  13. @AfterEach
  14. void teardown() {
  15. driver.quit();
  16. }
  17. @Test
  18. void test() {
  19. // Your test logic here
  20. }
  21. }

For further information about the driver resolution algorithm implemented by WebDriverManager and configuration capabilities, read the documentation.

Browsers in Docker

Another relevant new feature available in WebDriverManager 5 is the ability to create browsers in Docker containers out of the box. The requirement to use this feature is to have installed a Docker Engine in the machine running the tests. To use it, we need to invoke the method browserInDocker() in conjunction with create() of a given manager. This way, WebDriverManager pulls the image from Docker Hub, starts the container, and instantiates the WebDriver object to use it. The following test shows a simple example using Chrome in Docker. This example also enables the recording of the browser session and remote access using noVNC:

  1. import org.junit.jupiter.api.AfterEach;
  2. import org.junit.jupiter.api.BeforeEach;
  3. import org.junit.jupiter.api.Test;
  4. import org.openqa.selenium.WebDriver;
  5. import io.github.bonigarcia.wdm.WebDriverManager;
  6. class DockerChromeVncTest {
  7. WebDriver driver;
  8. WebDriverManager wdm = WebDriverManager.chromedriver().browserInDocker()
  9. .enableVnc().enableRecording();
  10. @BeforeEach
  11. void setup() {
  12. driver = wdm.create();
  13. }
  14. @AfterEach
  15. void teardown() {
  16. wdm.quit();
  17. }
  18. @Test
  19. void test() {
  20. // Your test logic here
  21. }
  22. }

Support

WebDriverManager is part of OpenCollective, an online funding platform for open and transparent communities. You can support the project by contributing as a backer (i.e., a personal donation or recurring contribution) or as a sponsor (i.e., a recurring contribution by a company).

Backers

Sponsors










Alternatively, you can acknowledge my work by buying me a coffee:



About

WebDriverManager (Copyright © 2015-2025) is a project created and maintained by Boni Garcia and licensed under the terms of the Apache 2.0 License.