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
Description: # 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()
        ```
        
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
