Metadata-Version: 2.1
Name: BrowseDrive
Version: 1.9
Summary: UNKNOWN
Home-page: UNKNOWN
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: selenium (>=3.141)
Requires-Dist: requests (>=2.23.0)
Requires-Dist: bs4 (>=0.0.1)

BrowseDrive is a package that allows for one to download the browser driver files used during browser automation with selenium. This package covers downloads for geckodriver and chromedriver. This package also has a module for the automation of browser drivers. 

## Installation
```python
pip3 install BrowseDrive==1.8

```

## Usage
```python 
import BrowseDrive
from BrowseDrive.driverautomator import DriverRunner
from BrowseDrive.driverdownloader import DriverDownloader

```

## Downloading drivers 
```python
downloader = DriverDownloader() 
downloader.set_savepath("") # Save path goes inside here
downloader.download() # Starts the download process

```

## Automation of browser driver 
```python
runner = DriverRunner() 
runner.go("https://www.google.com") # Goes to Google.com
runner.search_elements("input","class", "classname")

``` 

