It is a fast and convenience package that can automatically download or update Selenium webdriver binaries and their browsers for different OS.
Use the package manager pip to install selenium_driver_updater.
pip install selenium-driver-updater
This example shows how you can use this library to download chromedriver binary and use it immediately. The chromedriver will be downloaded to base directory.
from selenium_driver_updater import DriverUpdater
from selenium import webdriver
filename = DriverUpdater.install(DriverUpdater.chromedriver)
driver = webdriver.Chrome(filename)
driver.get('https://google.com')
Or you can specify a path where you want to download a chromedriver to
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)
driver = webdriver.Chrome(filename)
driver.get('https://google.com')
You can also specify the version type (beta, dev, canary) you want to download.
from selenium_driver_updater import DriverUpdater
from selenium import webdriver
filename = DriverUpdater.install(driver_name=DriverUpdater.chromedriver, version=DriverUpdater.chromedriver_beta)
driver = webdriver.Chrome(filename)
driver.get('https://google.com')
You can also 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)
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')
Use
selenium-driver-updater --help
To see all available arguments and commands
Or you can use alias
selupd --help
for easier use
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
For installing or updating chromedriver binary
All supported OS for this driver are:
- Windows
- Linux
- MacOS
- MacOS on M-based processors
For installing or updating geckodriver binary
All supported OS's for this driver are:
- Windows
- Windows ARM
- Linux
- Linux ARM
- MacOS
- MacOS on M-based processors
For installing or updating operadriver binary
All supported OS's for this driver are:
- Windows
- Linux
- MacOS
For installing or updating edgedriver binary
All supported OS's for this driver are:
- Windows
- Windows ARM
- MacOS
- MacOS on M-based processors
- Linux
For installing or updating safaridriver binary
All supported OS's for this driver are:
- MacOS
For checking version chrome browser
For checking version firefox browser
For checking version opera browser
For checking version edge browser