Skip to content

Instantly share code, notes, and snippets.

@rasjani
Created June 28, 2019 11:07
Show Gist options
  • Save rasjani/1b5f0d7e0b5c5a4bbbd0cb33f14f1e08 to your computer and use it in GitHub Desktop.
Save rasjani/1b5f0d7e0b5c5a4bbbd0cb33f14f1e08 to your computer and use it in GitHub Desktop.
same example but with "data driver approach"
*** Settings ***
Library String
Test Template Do Something With The Test Data
*** Test Cases *** MYSTR
Test Case With Star Trek as Input String Star Trek
Test Case With Star Wars as Input String Star Wars
Test Case With PErry Rhodan as Input String Perry Rhodan
*** Keywords ***
Do Something With The Test Data
[Arguments] ${MYSTR}
${MYSTR} Replace String ${MYSTR} ${SPACE} ${EMPTY}
Log ${MYSTR}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment