Last updated:
0 purchases
pyautogecko 0.1.3
pyautogecko
Fork of geckodriver-autoinstaller which is no longer mantained.
Automatically download and install geckodriver that supports the currently installed version of firefox. This installer supports Linux, MacOS and Windows operating systems.
Installation
pip install pyautogecko
Usage
Just type import pyautogecko in the module you want to use geckodriver.
Example
from selenium import webdriver
import pyautogecko
pyautogecko.install() # Check if the current version of geckodriver exists
# and if it doesn't exist, download it automatically,
# then add geckodriver to path
driver = webdriver.Firefox()
driver.get("http://www.python.org")
assert "Python" in driver.title
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.