A package to sync gecko driver to lastest version


Keywords
geckodriver, gecko, firefox, driver
License
Apache-2.0
Install
pip install pygeckodriver==0.32.0

Documentation

pygeckodriver

Installation:

# From PyPI
pip install pygeckodriver

Usage:

from selenium import webdriver
from pygeckodriver import geckodriver_path

bs = webdriver.Firefox(executable_path=geckodriver_path)
bs.get('https://www.pypi.org')