ContributionsMost RecentMost LikesSolutionsRe: How can I autoreplay one of my testcases? Thank's all. I have now already an solution with a data source loop. Re: How can I autoreplay one of my testcases? Hello, I tried this script a few times. See attachment for my issues. Re: How can I autoreplay one of my testcases? Thank you for your support! See attachments for my issues. Re: How can I autoreplay one of my testcases? The script crashes when I do not comment on "testCase.run (properties, async)" in "Setup Script." When I run the complete script in 'TearDown Script', my script is endlessly repeated. See attachments. Re: How can I autoreplay one of my testcases? I think that this code is wrong: "testCase.run (properties, async)". But I don't know what I must write there. Re: How can I autoreplay one of my testcases? Thank you for your response. It does not work. What can I do? Is my script (see below) wrong? My complete TearDown Script is now: // IMPORTANT. CAN CAUSE INFINITE LOOP WITHOUT ITERATOR for (i = 0; i < 3; i++) { def testCase = testRunner.testCase.testSuite.project.getTestSuiteByName("Medewerkers").getTestCaseByName("Niet-gekeurde medewerkers verwijderen") def properties = new com.eviware.soapui.support.types.StringToObjectMap () def async = false testCase.run (properties, async) if (i == 2) {break;} } Re: How can I autoreplay one of my testcases?See for my question the attachment.Re: How can I autoreplay one of my testcases? Igor, thank you very much! That script works! But another question. How can I stop that script during the loop? Or is there an option that I can replay the script for 10 or another number times? How can I autoreplay one of my testcases? Hello, I would like to autoreplay one of my testcases. Is that possible within SoapUI NG pro? And so yes, on what manner? Kind regards, Kees Solved