Metadata-Version: 2.1
Name: webdriver-update-tool
Version: 0.1.2
Summary: A tool for updating the webdriver automatically
Home-page: UNKNOWN
Author: cjz25
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.5
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: selenium (>=3.141.0)

# webdriver-update-tool

Tools for updating the webdriver automatically.

## Installation

Use [pip](https://pip.pypa.io/en/stable/) to install the webdriver-update-tool package like this:

```sh
$ pip install webdriver-update-tool
```

## Usage

```python
from webdriver_update_tool import update_chromedriver4mac as ucd4mac

MAC_LOCAL_CHROME_PATH = r"/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome"
PATH_TO_EXTRACT_DRIVER_ZIP = "driver"
CHROME_DRIVER_PATH = os.path.join(PATH_TO_EXTRACT_DRIVER_ZIP, "chromedriver")

ucd4mac.check_driver(MAC_LOCAL_CHROME_PATH, PATH_TO_EXTRACT_DRIVER_ZIP, CHROME_DRIVER_PATH)

```

## License
MIT License


