Metadata-Version: 2.1
Name: chromedriver-auto
Version: 1.0.10
Summary: This package downloads and helps you use chromedriver without needing to keep chromedriver updated regularly. Works for version no: 115.XX.XX.X and upwords.
Home-page: https://github.com/pypa/sampleproject
Author: Sorower Hossan
Author-email: sorower37@gmail.com
Project-URL: Bug Tracker, https://github.com/pypa/sampleproject/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE


# Make sure you have upgraded version of pip
Windows
```
py -m pip install --upgrade pip
```

Linux/MAC OS
```
python3 -m pip install --upgrade pip
```

## Install
```
pip install chromedriver-auto

or 

pip3 install chromedriver-auto
```

## This package works for chrome version >= 115.0.5790.102
Recently(24 july 2023) Google has published a new website for providing chromedriver for newer versions of CHROME BROWSER.
Details: https://googlechromelabs.github.io/chrome-for-testing/ 

first it checks, if a chromedriver is already there or not. If no chromedriver or version miss-match found, it will download chromedriver automatically from the official website.

Use Code:

<span style="color: red;">from chromedriver_auto.driver_ready import *</span>

```
driver.get('https://www.google.com')
```
