I have webpage designed for different Screen Variations like Full, small (640), medium (1024), large (1440) and xlarge (1920). By Default it displays Screen Variations Full and I want to test same webpage same functionalities for different screen Variations. In my case my feature file is as given below:
Background Outline:
Given Home page is displayed.
When I navigates to "abc" inside "xyz" menu
And user click on <screenVariation> tab
Examples:
| screenVariation|
| Full |
| small (640) |
| medium (1024) |
| large (1440) |
| xlarge (1920) |
Scenairo 1: abc...
Scenairo 2: xyz...
However It has give me error at Given tag only: Error: required (...)+ loop did not match anything at input 'Given '.
My background Outline will be followed by multiple scenarios, and I need to test each and ever scenarios for different screen screenVariation.