You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently if I've got a feature file with a scenario outline like this :
Scenario Outline: Eating <eat> cucumbersGiven there are <start> cucumbers
When I eat <eat> cucumbers
Then I should have <left> cucumbers
Examples:
| start | eat | left | | 12 | 5 | 7 | | 12 | 8 | 4 |
I've got in the JSON report (and also in HTML report)
Scenario Outline: Eating <eat> cucumbersGiven there are 12 cucumbers
When I eat 5 cucumbers
Then I should have 7 cucumbers
Scenario Outline: Eating <eat> cucumbersGiven there are 12 cucumbers
When I eat 8 cucumbers
Then I should have 4 cucumbers
Is it possible to also replace placeholders in Scenario Outline title ?
Scenario Outline: Eating 5 cucumbersGiven there are 12 cucumbers
When I eat 5 cucumbers
Then I should have 7 cucumbers
The text was updated successfully, but these errors were encountered:
Currently if I've got a feature file with a scenario outline like this :
I've got in the JSON report (and also in HTML report)
Is it possible to also replace placeholders in Scenario Outline title ?
The text was updated successfully, but these errors were encountered: