Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 260 Bytes

README.md

File metadata and controls

14 lines (13 loc) · 260 Bytes

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')