Metadata-Version: 1.1
Name: robotframework-seriallibrary
Version: 0.2.4
Summary: Robot Framework test library for serial connection
Home-page: https://github.com/whosaysni/robotframework-seriallibrary
Author: Yasushi Masuda
Author-email: whosaysni@gmail.com
License: Apache License 2.0
Description: ====================================
        SerialLibrary for Robot Framework
        ====================================
        
        This is a serial port test library for Robot Framework.
        
        
        Example::
        
            *** settings ***
            Library    SerialLibrary    loop://    encoding=ascii
        
            *** test cases ***
            Hello serial test
                 Write Data    Hello World
                 Read Data Should Be    Hello World
        
        
        Another Example::
        
            *** settings ***
            Library    SerialLibrary
        
            *** test cases ***
            Read Until should read until terminator or size
                [Setup]    Add Port    loop://    timeout=0.1
                ${bytes} =    Set Variable    
                Write Data    01 23 45 0A 67 89 AB CD EF
                ${read} =    Read Until
                Should Be Equal As Strings    ${read}    01 23 45 0A
                ${read} =    Read Until   size=2
                Should Be Equal As Strings    ${read}    67 89
                ${read} =    Read Until   terminator=CD
                Should Be Equal As Strings    ${read}    AB CD
                ${read} =    Read Until
                Should Be Equal As Strings    ${read}    EF
                ${read} =    Read Until
                Should Be Equal As Strings    ${read}    ${EMPTY}
                [Teardown]    Delete All Ports
        
Keywords: robotframework testing testautomation serial
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Testing
