Metadata-Version: 2.1
Name: webdriver-auto-update
Version: 0.0.1
Summary: Checks local chrome driver version and automatically downloads the latest available version online
Home-page: https://github.com/competencytestlvl/webdriver-auto-update
Author: Rony Khong
Author-email: ronykhong77@gmail.com
License: UNKNOWN
Keywords: selenium,chrome,driver,auto,download,update
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: wget

# webdriver-auto-update
A program to check existing local chrome driver version and automatically downloads the latest available version online.

# Program Functionality
- Checks local chromedriver driver version on your computer and compares it with the latest version available online.
- The latest online version/release will be downloaded if it does not match your local version.


## Pre-requisites:
1. Pip install Selenium Library
2. Download Google Chrome 


## Installation
- Make sure you have Python installed in your system.
- Run the following to install:

``` 
pip install webdriver-auto-update
```


## Example
```
# webdriver-auto-update.py
from webdriver-auto-update import check_driver

## Make sure to pass in the folder used for storing/downloading chromedriver
check_driver('folder/path/of/your/chromedriver')
```


## Note
- The objective of this program is to reduce redundancy of searching and downloading the updated version of chrome driver to the OpenSource community.
- Intended to be used in Selenium projects.

