Page 1 of 1

Can I make it try x runs of which y must pass?

Posted: Wed Oct 21, 2015 4:41 pm
by stapes
When it comes to integrating this with Jenkins, it will be helpful to perform the Test Runs more than once, mainly because they are not very robust & often fail for silly reasons.

For this reason, I would like to be able to say, perform x test runs of which y must pass.

Is this something I can do with Ranorex?

Re: Can I make it try x runs of which y must pass?

Posted: Wed Oct 21, 2015 5:59 pm
by tvu
Are you asking to run the entire Test Suite X amount of times or are you asking to run a Test Case X amount of times during one Test Suite?

You can use Jenkins' Multi Job or Multi-Configuration job to repeatedly run the Test Suite. Each iteration would just call the exe and then Jenkins would have the record of all the pass / fail runs.

You can drive a Test Case with a data connector if you want to run a Test Case X amount of time. If your data connector is a CSV then each link would have the exact info. Then the test case would pass if each iteration passes.

Hope that helps.