Metadata-Version: 2.4
Name: seleniumaroto
Version: 1.0.0
Summary: High-level Maroto automation processes built on seleniumarotodriver
Author: Muhammad Hamoud
Author-email: muhammad@hamouds.com
License: MIT
Keywords: python,selenium,webdriver,automation,maroto
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: seleniumarotodriver==1.0.0
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# seleniumaroto

High-level Maroto process helpers. This package depends on `seleniumarotodriver` and imports Selenium objects from it.

```python
from seleniumarotodriver import MarotoDriver
from seleniumaroto.processes import open_rate_offer, available_rate_offer

browser = MarotoDriver(browser="chrome", timeout=20)
driver = browser.raw
open_rate_offer(driver, "REGA")
rows = available_rate_offer(driver, rate_program="REGA")
```
