ContributionsMost RecentMost LikesSolutionsHow to stop execution of TestSuite when TestCase fail?Hi In our project we have something like this CreateDomainSuite (TeestSuite) - createDomain (TestCase) -getTokenCrm (TestCase) - uploadFile (TestCase) ....another 5-10 TestCases When we run this suite from Atlassian Bamboo using testRunner in case of failure in createDomain test case we got many errors in junit files. Because createDomain test case create essential data that are necessary for other test cases in our project when createDomain test case fail we should not continue and execute other test cases in test suite. Now testRunner execute all test cases what result in many errors and for developers it is very hard to identify what is reason of failure - because they have 10 or more failure. In attachment Bamboo.jpg you can see result of such situation (as you see cause of error 'createDomain' is not on first position) but in Soaup.jpg you can see that createDomain is first test case in testsuite. Regards Michał SzymańskiHow to customizing testRunner reportHello, We try to integrate SoupUI with Attlassian Bamboo. In one Bamboo step we call testRunner with -j and after we parse JUnit result. It works great but description of errors of specific test case are too short for us. Below example of such message: Failing due to failed test step: Failing due to failed test step <h3><b>getGroupFinancialData7 Failed</b></h3><pre>[Check for existance of [e:code]] XPathContains comparison failed, expecting [false], actual was [true] </pre><hr/> Instead of such message we prefer to see xml request and xml response, the easiest solution is to add link in this message with link to file generated by testRunner (file with error). Question is how to customize SoupUI report? Regards Michal SzymanskigotoTestStepByName does not workI'm using soapUI 3.6.2 Pro and I would like to execute this code: testRunner.gotoTestStepByName("UpdatePartner") and I got such error: groovy.lang.MissingMethodException: No signature of method: com.eviware.soapui.impl.wsdl.panels.support.MockTestRunner.gotoTestStepByName() is applicable for argument types: (java.lang.String) values: [UpdatePartner] Possible solutions: gotoStepByName(java.lang.String), runTestStepByName(java.lang.String) when I execute testRunner.runTestStepByName("UpdatePartner") it works Is it soapUI bug?