robotframework-style-guide icon indicating copy to clipboard operation
robotframework-style-guide copied to clipboard

Test Template TestCases

Open guidodemmenie opened this issue 1 year ago • 1 comments

How to style out Template TestCases like this:

*** Test Cases ***                  USERNAME            PASSWORD
Invalid User Name                   [Tags]              foo
                                    invalid             ${VALID PASSWORD}
Invalid Password                    [Documentation]     foo
                                    [Tags]              bar
                                    ${VALID USER}       invalid
Invalid User Name and Password      [Tags]              baz
                                    invalid             invalid
Empty User Name
                                    ${EMPTY}            ${VALID PASSWORD}
Empty Password                      ${VALID USER}       ${EMPTY}
                                    [Tags]              spam  eggs
Empty User Name and Password        ${EMPTY}            ${EMPTY}

See Conversation started by @mnojek: https://robotframework.slack.com/archives/C01AWSNKC2H/p1680199719296719

guidodemmenie avatar Mar 31 '23 08:03 guidodemmenie