Skip to content

Instantly share code, notes, and snippets.

@fesor
Created January 20, 2015 10:16
Show Gist options
  • Select an option

  • Save fesor/a98c6b7517543c2c3370 to your computer and use it in GitHub Desktop.

Select an option

Save fesor/a98c6b7517543c2c3370 to your computer and use it in GitHub Desktop.
Example.feature
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