20 lines
473 B
Gherkin
20 lines
473 B
Gherkin
@click_nested_inside_count
|
|
Feature: Click Nested Inside Count
|
|
|
|
Background:
|
|
|
|
Given I see the app
|
|
|
|
Scenario Outline: Should increase the count
|
|
|
|
Given I select the mode <Mode>
|
|
And I select the component Nested (resource created inside)
|
|
When I click the count 3 times
|
|
Then I see the count is 3
|
|
|
|
Examples:
|
|
| Mode |
|
|
| Out-of-Order |
|
|
| In-Order |
|
|
| Async |
|