Download or update your Selenium driver binaries and their browsers automatically with this package
Project description
selenium_driver_updater
It is a fast and convenience package that can automatically download or update Selenium webdriver binaries and their browsers for different OS.
Installation
Use the package manager pip to install selenium_driver_updater.
pip install selenium-driver-updater
Usage
This example shows how you can use this library to download chromedriver binary.
from selenium_driver_updater import DriverUpdater
import os
base_dir = os.path.dirname(os.path.abspath(__file__))
result, message, filename = DriverUpdater.install(path=base_dir, driver_name=DriverUpdater.chromedriver, upgrade=True, check_driver_is_up_to_date=True)
print(filename)
Or you can use library to download and update chromedriver and geckodriver binaries at the same time.
from selenium_driver_updater import DriverUpdater
import os
base_dir = os.path.dirname(os.path.abspath(__file__))
list_drivers = [DriverUpdater.chromedriver, DriverUpdater.geckodriver]
result, message, filename = DriverUpdater.install(path=base_dir, driver_name=list_drivers, upgrade=True, check_driver_is_up_to_date=True)
print(filename)
Supported Selenium Binaries
Chromedriver (DriverUpdater.chromedriver)
- Windows
- Linux
- MacOS
- MacOS with M1
Geckodriver (DriverUpdater.geckodriver)
- Windows
- Linux
- MacOS
- MacOS with M1
Operadriver (DriverUpdater.operadriver)
- Windows
- Linux
- MacOS
Edgedriver (DriverUpdater.edgedriver)
- Windows
- Linux
- MacOS
- ARM
Supported browsers for updates
Chrome Browser
- Windows
- MacOS
Firefox Browser
- Windows
- MacOS
Opera Browser
- Windows
- MacOS
Edge Browser
- Windows
- MacOS
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file selenium_driver_updater-2.18.0.tar.gz
.
File metadata
- Download URL: selenium_driver_updater-2.18.0.tar.gz
- Upload date:
- Size: 23.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.0 pkginfo/1.7.0 requests/2.23.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f7596e34deb18b563f55c18bd8c0189d87378ded02ad7e16cd8a6c7994549db |
|
MD5 | d8e67c8c9483a803fe85636fa2e62c50 |
|
BLAKE2b-256 | 95fe23c54362f8b64236adfb1b4c6f0cc4c4a30b593a95b986a6bc19a62e5a5f |