Metadata-Version: 2.4
Name: smart-automation-utils
Version: 0.1.0
Summary: A python package for automation developers working with Selenium and Appium
Home-page: https://github.com/dhirajdas.666/smart-automation-utils
Author: dhiraj
Author-email: dhirajdas.666@gmail.com
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
Requires-Dist: selenium
Requires-Dist: Appium-Python-Client
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Smart Automation Utils

A Python package designed to help automation developers and testers working with Selenium and Appium.

## Features

- **SmartDriver**: A wrapper around Selenium WebDriver that handles automatic waits and common interactions intelligently.
- **Element Highlighting**: Visual debugging tool to highlight elements during test execution.
- **Smart Waits**: Decorators and context managers for handling dynamic content.

## Installation

```bash
pip install smart-automation-utils
```

## Usage

```python
from smart_automation.driver import SmartDriver

driver = SmartDriver("chrome")
driver.get("https://example.com")
driver.find_element_by_id("submit").click()
```
