Metadata-Version: 2.1
Name: uw-webdriver-recorder
Version: 1.1.0
Summary: Enhances a selenium webdriver to record screenshots along the way
Home-page: https://github.com/UWIT-IAM/webdriver-recorder
Author: UW-IT Identity and Access Management
Author-email: jpf@uw.edu
License: Apache License, Version 2.0
Description: # webdriver-recorder
        This enhances selenium's webdriver to simplify the interface and capture
        screenshots along the way. When run it will output html with screenshots
        of different scenarios. This uses python3.4+ only.
        
        ## Installation
        ```
        pip install uw-webdriver-recorder
        npm install phantomjs-prebuilt  # or use a global phantomjs
        ```
        
        ## Running it
        Assume the following file:
        
        ```python
        """test_42.py"""
        def test_42(browser, report_test):
            """Check the answer."""
            browser.get('https://en.wikipedia.org/wiki/42_(number)')
            browser.wait_for('body', 'life, the universe, and everything')
        ```
        
        You would then run the test with
        ```bash
        pytest
        ```
        When the test completes, you will have file `webdriver-report/index.html`, with a
        screenshot for every `wait_for()` in your test.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Framework :: Pytest
Requires-Python: >=3.4
Description-Content-Type: text/markdown
