Metadata-Version: 2.1
Name: RobotFramework-Examples
Version: 0.2.0
Summary: Examples in Robot Framework. Expands example data to individual test cases
Home-page: UNKNOWN
Author: Vernon Crabtree
Author-email: vernon.b.crabtree@gmail.com
License: Apache License 2.0
Project-URL: Examples, https://github.com/worldline/RobotFramework-Examples
Keywords: robotframework testing testautomation bdd gwen examples
Platform: any
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Testing
Classifier: Framework :: Robot Framework
Classifier: Framework :: Robot Framework :: Library
Requires-Python: >=3.8
License-File: LICENSE

# RobotFramework-Examples

Support for Examples: in Robot Framework like in other BDD style test frameworks

An example of a test case looks like this:

.. code:: robotframework

    *** Settings ***
    Library    Examples

    *** Test cases ***
    My test with examples for ${name}
        Log    Hello ${name}, welcome to ${where welcome}    console=True
    
        Examples:    name      where welcome    --
                ...    Joe       the world!
                ...    Arthur    Camelot (clip clop).
                ...    Patsy     it's only a model!


Keyword information can be found here: `Keywords`_


.. _Keywords: https://worldline.github.io/RobotFramework-Examples


