Metadata-Version: 1.1
Name: RobotS2LScreenshot
Version: 0.1.1
Summary: Provides additional keywords to augment screenshots capabilities of RobotFramework's Selenium2Library, namely cropping and masking to help with perceptual diff testing.
Home-page: https://github.com/canaryhealth/RobotS2LScreenshot
Author: UNKNOWN
Author-email: UNKNOWN
License: MIT
Description: ==================
        RobotS2LScreenshot
        ==================
        
        Provides additional keywords to augment screenshots capabilities of 
        RobotFramework's Selenium2Library, namely cropping and masking to help with 
        perceptual diff testing.
        
        
        Usage
        =====
        
        .. code::
        
          Capture main area only
            Capture And Crop Page Screenshot  example1.png  css=div.main
        
          Capture and mask logo and submit button
            ${locators}  Create List  xpath=//span[@class='logo']  xpath=//button[text()='Save']
            Capture and Mask Page Screenshot  example2.png  locators=${locators}
        
          Capture and mask areas
            # areas are specified as x,y,w,h
            ${rects}  Create List  10,20,25,25  30,40,50,50
            Capture and Mask Page Screenshot  example2.png  rects=${rects}
        
        
        Dependencies
        ============
        
        - Selenuim2
        - RobotFramework
        - Selenium2Library (Robot Library)
        - Pillow
        - PerceptualDiff **(you will need to install this separately)**
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Software Development :: Testing
