Last active
November 23, 2015 08:12
-
-
Save mz0/9694068a464e636f12a8 to your computer and use it in GitHub Desktop.
"Automated testing with Selenium and Cucumber" - Listing 2
This file contains hidden or 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
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 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Listing 2 from
"Automated testing with Selenium and Cucumber"
http://www.ibm.com/developerworks/library/a-automating-ria/