Skip to content

Instantly share code, notes, and snippets.

@Hyperparticle
Last active June 4, 2017 20:29
Show Gist options
  • Save Hyperparticle/2c2772b0eef918068b4af7dfe2478542 to your computer and use it in GitHub Desktop.
Save Hyperparticle/2c2772b0eef918068b4af7dfe2478542 to your computer and use it in GitHub Desktop.
Robot Framework example
*** 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