Metadata-Version: 2.1
Name: robotframework-PuppeteerLibrary
Version: 0.2.0
Summary: ExcelDataDriver is a Excel Data-Driven Testing library for Robot Framework.
Home-page: https://github.com/qahive/robotframework-puppeteer
Author: QA Hive Co.,Ltd
Author-email: support@qahive.com
License: Apache License 2.0
Description: # robotframework-puppeteer
        Puppeteer with robotframework. This project connect between robotframework and puppeteer using [pyppeteer](https://github.com/pyppeteer/pyppeteer).
        
        
        Keyword documentation
        ---------------------
        See [`keyword documentation`](https://qahive.github.io/robotframework-puppeteer/PuppeteerLibrary.html) for available keywords and more information about the library in general.
        
        
        Command for Generate document
        
            python -m robot.libdoc -f html PuppeteerLibrary docs/PuppeteerLibrary.html
        
        Installation
        ------------
        The recommended installation method is using pip_::
        
            pip install --upgrade robotframework-puppeteer
            
        Or manually install by running following command
            
            pip install -r requirements.txt
            python setup.py install
        
        
        Usage
        ------------
        
            *** Settings ***
            Library    PuppeteerLibrary
        
            *** Test Cases ***
            Control chrome browser
                [Teardown]    Test Teardown
                Open browser
                Maximize Browser Window
                Input text    id=fname    Mary
                Input text    id=lname    Jane
                Click Element    css=input[type=submit]
        
            *** Keywords ***
            Test Teardown
                Close browser
        
        
        Contributor
        ------------
        robotframework-puppeteer mainly contribute by QAHive Co. Ltd.
        
        
Keywords: robotframework puppeteer web-testing automation
Platform: any
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Testing :: Acceptance
Classifier: Framework :: Robot Framework
Description-Content-Type: text/markdown
