All Projects → bonigarcia → Webdrivermanager

bonigarcia / Webdrivermanager

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

Programming Languages

java
68154 projects - #9 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to Webdrivermanager

headless-chrome
Implementation of the new headless chrome with chromedriver and selenium.
Stars: ✭ 34 (-98.12%)
Mutual labels:  maven, selenium, chromedriver, selenium-webdriver
Panther
A browser testing and web crawling library for PHP and Symfony
Stars: ✭ 2,480 (+37.17%)
Mutual labels:  selenium, selenium-webdriver, chromedriver
pyderman
Install Selenium-compatible Chrome/Firefox/Opera/PhantomJS/Edge webdrivers automatically.
Stars: ✭ 24 (-98.67%)
Mutual labels:  selenium, chromedriver, geckodriver
jest-selenium
This project shows how to drive your selenium tests with Jest.
Stars: ✭ 22 (-98.78%)
Mutual labels:  selenium, chromedriver, geckodriver
Selenium Maven Template
A maven template for Selenium that will let you check out and go.
Stars: ✭ 403 (-77.71%)
Mutual labels:  maven, selenium, selenium-webdriver
yt-videos-list
Create and **automatically** update a list of all videos on a YouTube channel (in txt/csv/md form) via YouTube bot with end-to-end web scraping - no API tokens required. Multi-threaded support for YouTube videos list updates.
Stars: ✭ 64 (-96.46%)
Mutual labels:  selenium, chromedriver, geckodriver
Java.webdriver
Browser test automation using Selenium WebDriver in Java
Stars: ✭ 135 (-92.53%)
Mutual labels:  maven, selenium, selenium-webdriver
SeleniumDemo
Selenium automation test framework
Stars: ✭ 84 (-95.35%)
Mutual labels:  maven, selenium, selenium-webdriver
Node Chromedriver
An installer and wrapper for Chromedriver.
Stars: ✭ 378 (-79.09%)
Mutual labels:  selenium, selenium-webdriver, chromedriver
Sillynium
Automate the creation of Python Selenium Scripts by drawing coloured boxes on webpage elements
Stars: ✭ 100 (-94.47%)
Mutual labels:  selenium, selenium-webdriver, chromedriver
Katalium
Stars: ✭ 36 (-98.01%)
Mutual labels:  selenium, selenium-webdriver
Javaee7 Petclinic
Java EE 7 Petclinic
Stars: ✭ 31 (-98.29%)
Mutual labels:  selenium, selenium-webdriver
Autocrawler
Google, Naver multiprocess image web crawler (Selenium)
Stars: ✭ 957 (-47.07%)
Mutual labels:  selenium, chromedriver
Marionette client
Mozilla's Gecko Marionette client in golang
Stars: ✭ 21 (-98.84%)
Mutual labels:  selenium, selenium-webdriver
Java.appium
Mobile test automation using Appium in Java
Stars: ✭ 59 (-96.74%)
Mutual labels:  selenium, selenium-webdriver
Wdio Video Reporter
Reporter for WebdriverIO v6 that makes videos of failed tests and has optional allure integration
Stars: ✭ 53 (-97.07%)
Mutual labels:  selenium, selenium-webdriver
Pyleniumio
Bring the best of Selenium and Cypress into a single Python package
Stars: ✭ 61 (-96.63%)
Mutual labels:  selenium, selenium-webdriver
Cfselenium
A native Selenium WebDriver binding for ColdFusion
Stars: ✭ 77 (-95.74%)
Mutual labels:  selenium, selenium-webdriver
Webdriverextensions
Make your WebDriver based Selenium tests more readable, reusability and maintainable by using WebDriver Extensions!
Stars: ✭ 89 (-95.08%)
Mutual labels:  selenium, selenium-webdriver
E2e Experiment
A demo project with Spring Boot / Angular application and e2e tests
Stars: ✭ 9 (-99.5%)
Mutual labels:  selenium, selenium-webdriver

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.

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 setupClass() {
        WebDriverManager.chromedriver().setup();
    }

    @BeforeEach
    void setupTest() {
        driver = new ChromeDriver();
    }

    @AfterEach
    void teardown() {
        if (driver != null) {
            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.

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:

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 setupTest() {
        driver = wdm.create();
    }

    @AfterEach
    void teardown() {
        wdm.quit();
    }

    @Test
    void test() {
        // Your test logic here
    }

}

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

About

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].