Metadata-Version: 2.1
Name: spydr
Version: 0.0.1
Summary: Selenium Webdriver wrapper with Selenium IDE-like functionality
Home-page: https://github.com/aaronchen/spydr
Author: Aaron Chen
Author-email: aaron@611b.com
License: MIT
Keywords: spydr,selenium,webdriver,python
Platform: any
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: selenium (>=3.141.0)
Requires-Dist: webdriver-manager (>=3.2.1)

# spydr
Selenium Webdriver (Python binding) wrapper with Selenium IDE-like functionality

# How-To

```python
from spydr.webdriver import Spydr

sp = Spydr()
sp.maximize_window()
sp.get('https://www.google.com/')
sp.send_keys('name=q', 'webdriver', sp.keys.ENTER)
sp.save_screenshot('sample_shot')
sp.quit()
```


