Metadata-Version: 2.1
Name: AIOdriver
Version: 0.1.2
Summary: All in one driver
Home-page: https://github.com/abhishake99/AIOdriver
Author: Abhishek Ramawat
Author-email: ramawatabhishek22@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/mike-huls/toolbox/issues
Description-Content-Type: text/markdown
License-File: LICENSE

# AIOdriver
A all in one driver system with support for both chrome and edge with auto update funcationality

## Installation

Run this command to install the package `pip install git+https://github.com/abhishake99/AIOdriver.git`

## Driver Creation Methods

You can create WebDriver instances for different browsers using the `createwebdriver` function from the `AIOdriver.functions` module.


### Chrome WebDriver Creation

To create a Chrome WebDriver:

```python
from AIOdriver.functions import createwebdriver

driver = ''
driver = createwebdriver(driver, driver_type="chrome")  # Chrome driver creation
```

### Edge WebDriver Creation
To create a Edge WebDriver:

```python
from AIOdriver.functions import createwebdriver
driver = ''
driver = createwebdriver(driver, driver_type="edge")  # Edge driver creation
```
