Last active
June 4, 2017 20:29
-
-
Save Hyperparticle/2c2772b0eef918068b4af7dfe2478542 to your computer and use it in GitHub Desktop.
Robot Framework example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** Settings *** | |
Documentation A test suite with a single test for valid login. | |
... | |
... This test has a workflow that is created using keywords in | |
... the imported resource file. | |
Resource resource.txt | |
*** Test Cases *** | |
A User Can Create an Account and Log In | |
Create Valid User fred P4ssw0rd | |
Attempt to Login with Credentials fred P4ssw0rd | |
Status Should Be Logged In | |
A User Cannot Log In With Bad Password | |
Create Valid User betty P4ssw0rd | |
Attempt to Login with Credentials betty wrong | |
Status Should Be Access Denied |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment