citrus
citrus copied to clipboard
Add convenient retry count configuration to RepeatOnErrorBuilder
User story
As a software developer, I would love to see a convenient way to configure retry count of repeatOnError, so that I can write citrus test even faster.
Currently
repeatOnError().until((i, testContext) -> i <= 20)
Suggested:
repeatOnError().times(20)