Skip to content

Instantly share code, notes, and snippets.

@mz0
Last active November 23, 2015 08:12
Show Gist options
  • Save mz0/9694068a464e636f12a8 to your computer and use it in GitHub Desktop.
Save mz0/9694068a464e636f12a8 to your computer and use it in GitHub Desktop.
"Automated testing with Selenium and Cucumber" - Listing 2
Feature: Test Login
Scenario Outline: Login Success and Failure
Given I navigate to the mock application
When I try to login with '<type>' credentials
Then I should see that I logged in '<status>'
Examples:
| type | status |
| valid | successfully |
| invalid | unsuccessfully |
@mz0
Copy link
Author

mz0 commented Oct 18, 2015

Listing 2 from
"Automated testing with Selenium and Cucumber"
http://www.ibm.com/developerworks/library/a-automating-ria/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment