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 in code
This example shows how you can use this library to download chromedriver binary and use it immediately.
from selenium_driver_updater import DriverUpdater
from selenium import webdriver
import os
base_dir = os.path.dirname(os.path.abspath(__file__))
filename = DriverUpdater.install(path=base_dir, driver_name=DriverUpdater.chromedriver, upgrade=True, check_driver_is_up_to_date=True)
driver = webdriver.Chrome(filename)
driver.get('https://google.com')
Or you can use library to download and update chromedriver and geckodriver binaries at the same time.
from selenium_driver_updater import DriverUpdater
from selenium import webdriver
import os
base_dir = os.path.dirname(os.path.abspath(__file__))
list_drivers = [DriverUpdater.chromedriver, DriverUpdater.geckodriver]
filenames = DriverUpdater.install(path=base_dir, driver_name=list_drivers, upgrade=True, check_driver_is_up_to_date=True)
print(filenames)
driver_chrome = webdriver.Chrome(filename[0])
driver_chrome.get('https://google.com')
driver_firefox = webdriver.Firefox(filename[1])
driver_firefox.get('https://google.com')
Usage with help of command line
Use
selenium-driver-updater --help
To see all available arguments and commands
This example shows how you can use this console updater to download chromedriver to current dir
selenium-driver-updater -d chromedriver
Or you can use console updater to download chromedriver and geckodriver at the same time
selenium-driver-updater -d chromedriver,geckodriver
Supported Selenium Binaries
Chromedriver
DriverUpdater.chromedriver
For installing or updating chromedriver binary
All supported OS for this driver are:
- Windows
- Linux
- MacOS
- MacOS with M1
Geckodriver
DriverUpdater.geckodriver
For installing or updating geckodriver binary
All supported OS's for this driver are:
- Windows
- Windows ARM
- Linux
- Linux ARM
- MacOS
- MacOS with M1
Operadriver
DriverUpdater.operadriver
For installing or updating operadriver binary
All supported OS's for this driver are:
- Windows
- Linux
- MacOS
Edgedriver
DriverUpdater.edgedriver
For installing or updating edgedriver binary
All supported OS's for this driver are:
- Windows
- Windows ARM
- MacOS
- MacOS with M1
- Linux
PhantomJS
DriverUpdater.phantomjs
For installing or updating phantomjs binary
All supported OS's for this driver are:
- Windows
- MacOS
- Linux
SafariDriver
DriverUpdater.safaridriver
For installing or updating safaridriver binary
All supported OS's for this driver are:
- MacOS
Supported browsers for updates
Chrome Browser
For updating chrome browser
All supported OS's for this browser are:
- MacOS
Firefox Browser
For updating firefox browser
All supported OS's for this browser are:
- MacOS
Opera Browser
For updating opera browser
All supported OS's for this browser are:
- Windows 32 / 64 / ARM
- MacOS
Edge Browser
For updating edge browser
All supported OS's for this browser are:
- 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-6.0.1.tar.gz
.
File metadata
- Download URL: selenium_driver_updater-6.0.1.tar.gz
- Upload date:
- Size: 27.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3efd4c579b76c2595d82719f553f19909c04dbcd5048a7d5e5bce927e29d481b |
|
MD5 | dc54f726632a80f4d3c49e62e8c66e4a |
|
BLAKE2b-256 | 20d830c970f1316be4e4bec74b5206475375ccd1048a625e9bea81d69eb1fe7c |