Metadata-Version: 2.1
Name: selenium-toolkit
Version: 0.0.4
Summary: this is not a awesome description
Home-page: https://github.com/jorgepvasconcelos/webdriver-toolkit
License: MIT
Keywords: selenium,webdriver
Author: Jorge Vasconcelos
Author-email: john@example.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: selenium (>=4.2.0,<5.0.0)
Project-URL: Repository, https://github.com/jorgepvasconcelos/webdriver-toolkit
Description-Content-Type: text/markdown

# selenium-toolkit

This library provides an easier way to use and interact with selenium driver. 

Features that currently selenium-toolkit can offer:

- ✅️ **More legible selenium code**
- ✅️ **Abstractions of selenium methods**
- ✅️ **Helpful tools to use when interacting with browsers**



## Install
```
pip install selenium-toolkit
```

## Basic
```python
from selenium.webdriver import Chrome
from selenium_toolkit import SeleniumToolKit

# Create chomedriver instance
driver = Chrome()

# Pass driver to SeleniumToolKit
selenium_kit = SeleniumToolKit(driver=driver)

# Use SeleniumToolKit to find a web element
web_element = selenium_kit.query_selector('.class1')

# With returned web_element use click() method
web_element.click()
```
