# python-geckodriver-autoinstaller **Repository Path**: ianduin/python-geckodriver-autoinstaller ## Basic Information - **Project Name**: python-geckodriver-autoinstaller - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-06-06 - **Last Updated**: 2021-06-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # geckodriver-autoinstaller Automatically download and install [geckodriver](https://github.com/mozilla/geckodriver/releases/latest) that supports the currently installed version of firefox. This installer supports Linux, MacOS and Windows operating systems. ## Installation ```bash pip install geckodriver-autoinstaller ``` ## Usage Just type `import geckodriver_autoinstaller` in the module you want to use geckodriver. ## Example ``` from selenium import webdriver import geckodriver_autoinstaller geckodriver_autoinstaller.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 ```