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
In karate generally to run feature files in specific order we use a master file to call the feature files, but this generally mix up the reports in single page and makes problem while debugging.
I understand this impacts karate feature for parallel execution but we should have way to specify order of features.
Like with the help of tags.
For example if we have a tag @SomeTag
so in feature file 1, we add @SomeTag(order=1)
and in second feature file , we add @SomeTag(order=2)
and when we run this specific tag it will the the first feature file and then the second one in order.
This will help us lot in specific scenarios where we like to test CRUD operations of an API , so in order we can perform it in specific order and can get a well defined report.
Please look if we can consider this.
The text was updated successfully, but these errors were encountered:
In karate generally to run feature files in specific order we use a master file to call the feature files, but this generally mix up the reports in single page and makes problem while debugging.
I understand this impacts karate feature for parallel execution but we should have way to specify order of features.
Like with the help of tags.
For example if we have a tag @SomeTag
so in feature file 1, we add @SomeTag(order=1)
and in second feature file , we add @SomeTag(order=2)
and when we run this specific tag it will the the first feature file and then the second one in order.
This will help us lot in specific scenarios where we like to test CRUD operations of an API , so in order we can perform it in specific order and can get a well defined report.
Please look if we can consider this.
The text was updated successfully, but these errors were encountered: