Hi
Using Specflow + SpecRun
I am running two scenarios one is scenario outline and scenario two is normal scenario .. The execution flow is such that scenario outline runs first then runs the normal scenario
@mytag4
Scenario Outline: outline
Given I am a user
When I enter <x> as an amount
Then the result should be <result>
Examples:
|x|result|
|1|3 |
|1|1 |
@mytag4
Scenario: Add two numbers B
Given I have entered 5 into the calculator
And I have entered 5 into the calculator
When I press add
Then the result should be a on the screen
| Title | Description | Comments |
| A | ghhgg | comma |
| B | ghgab | commb |
| C | ghgac | commc |
I purposely failed the scenario outline for my testing purpose.
The strange thing that has happened is the scenario is retried twice(not sure whether its a default functionality).
what I want is once it fails it should retry again otherwise it will consume lot of my execution time.
I even tried by removing stopAfterFailures="2" attribute from execution tag in default profile but it did not work.
Not sure what to do