Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Selenium | 26,161 | 14,155 | 1,860 | 19 hours ago | 169 | June 23, 2022 | 192 | apache-2.0 | Java | |
A browser automation framework and ecosystem. | ||||||||||
Nightwatch | 11,339 | 15,845 | 2,910 | 18 hours ago | 279 | September 17, 2022 | 200 | mit | JavaScript | |
End-to-end testing framework written in Node.js and using the W3C Webdriver API | ||||||||||
Protractor | 8,794 | 137,072 | 13,554 | 2 months ago | 103 | May 13, 2020 | 683 | mit | JavaScript | |
E2E test framework for Angular apps | ||||||||||
Docker Selenium | 6,671 | 3 days ago | 36 | other | Shell | |||||
Docker images for Selenium Grid | ||||||||||
Chrome | 5,326 | 21 hours ago | 3 | January 26, 2021 | 31 | other | TypeScript | |||
The browserless Chrome service in Docker. Run on our cloud, or bring your own. | ||||||||||
Php Webdriver | 4,787 | 4,646 | 165 | 15 days ago | 25 | June 13, 2019 | 14 | mit | PHP | |
PHP client for Selenium/WebDriver protocol. Previously facebook/php-webdriver | ||||||||||
Undetected Chromedriver | 4,446 | 31 | 7 days ago | 35 | March 16, 2022 | 586 | gpl-3.0 | Python | ||
Custom Selenium Chromedriver | Zero-Config | Passes ALL bot mitigation systems (like Distil / Imperva/ Datadadome / CloudFlare IUAM) | ||||||||||
Seleniumbase | 3,202 | 12 | 5 | 3 days ago | 787 | July 06, 2022 | 2 | mit | Python | |
A Python browser automation framework for creating reliable end-to-end tests. | ||||||||||
Selenium Python Helium | 3,188 | 9 | 4 months ago | 26 | September 03, 2021 | 37 | mit | Python | ||
Selenium-python but lighter: Helium is the best Python library for web automation. | ||||||||||
Panther | 2,690 | 881 | 30 | a month ago | 21 | December 02, 2021 | 179 | mit | PHP | |
A browser testing and web crawling library for PHP and Symfony |
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.
As of version 5, the documentation of WebDriverManager has moved here. This site contains all the features, examples, configuration, and advanced capabilities of WebDriverManager.
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.
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import io.github.bonigarcia.wdm.WebDriverManager;
class ChromeTest {
WebDriver driver;
@BeforeAll
static void setupAll() {
WebDriverManager.chromedriver().setup();
}
@BeforeEach
void setup() {
driver = new ChromeDriver();
}
@AfterEach
void teardown() {
driver.quit();
}
@Test
void test() {
// Your test logic here
}
}
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:
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import io.github.bonigarcia.wdm.WebDriverManager;
class ChromeCreateTest {
WebDriver driver;
@BeforeEach
void setup() {
driver = WebDriverManager.chromedriver().create();
}
@AfterEach
void teardown() {
driver.quit();
}
@Test
void test() {
// Your test logic here
}
}
For further information about the driver resolution algorithm implemented by WebDriverManager and configuration capabilities, read the documentation.
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:
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.openqa.selenium.WebDriver;
import io.github.bonigarcia.wdm.WebDriverManager;
class DockerChromeVncTest {
WebDriver driver;
WebDriverManager wdm = WebDriverManager.chromedriver().browserInDocker()
.enableVnc().enableRecording();
@BeforeEach
void setup() {
driver = wdm.create();
}
@AfterEach
void teardown() {
wdm.quit();
}
@Test
void test() {
// Your test logic here
}
}
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).
Alternatively, you can acknowledge my work by buying me a coffee:
WebDriverManager (Copyright © 2015-2023) is a project created and maintained by Boni Garcia and licensed under the terms of the Apache 2.0 License.
If you like my work, please consider nominating me for the GitHub Stars program.