Created
January 20, 2015 10:16
-
-
Save fesor/a98c6b7517543c2c3370 to your computer and use it in GitHub Desktop.
Example.feature
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
| Scenario Outline: user may want to select value from predefined list or enter it's onw value | |
| Given i have form with select control | |
| When i select <selected> option | |
| And custom option is <entered> | |
| Then form should use value <expected> | |
| Examples: | |
| | selected | entered | expected | | |
| | First option | | First option | | |
| | Second options | | Second option | | |
| | | Custom option | Custom option | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment