https://github.com/max32002/chromedriver-autoinstaller-max
The chromedriver auto installer for distribution.
https://github.com/max32002/chromedriver-autoinstaller-max
Last synced: 3 months ago
JSON representation
The chromedriver auto installer for distribution.
- Host: GitHub
- URL: https://github.com/max32002/chromedriver-autoinstaller-max
- Owner: max32002
- License: mit
- Created: 2024-01-10T08:39:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-19T01:36:11.000Z (over 2 years ago)
- Last Synced: 2025-05-26T06:13:32.601Z (about 1 year ago)
- Language: Python
- Size: 7.81 KB
- Stars: 3
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# chromedriver-autoinstaller-max
chromedriver-autoinstaller-max was forked from the original [python-chromedriver-autoinstaller](https://github.com/yeongbin-jo/python-chromedriver-autoinstaller) repository.
## Installation
```bash
pip install chromedriver-autoinstaller-max
```
## Usage
Just type `import chromedriver_autoinstaller_max` in the module you want to use chromedriver.
## Example
```
from selenium import webdriver
import chromedriver_autoinstaller_max
chromedriver_autoinstaller_max.install() # Check if the current version of chromedriver exists
# and if it doesn't exist, download it automatically,
# then add chromedriver to path
driver = webdriver.Chrome()
driver.get("http://www.python.org")
assert "Python" in driver.title
```
## Authors & Contributors
- CHIDA <[iam.yeongbin.jo@gmail.com](mailto:iam.yeongbin.jo@gmail.com)>