Table of Contents
30 Nov 2022
Library resources | |
---|---|
PyPI | https://pypi.org/project/webdriver-manager/ |
Github | https://github.com/SergeyPirogov/webdriver_manager |
Documentation | --- |
Getting Started
pip3 install webdriver-manager
Usage
# selenium 4
from selenium import webdriver
from selenium.webdriver.chrome.service import Service as ChromeService
from webdriver_manager.chrome import ChromeDriverManager
driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()))