ContributionsMost RecentMost LikesSolutionsSwagger Greetings, Im trying to consume a swagger api using java, the problem the response is too large +700000 lines and using java im not getting the whole response (less of 50% of it) is there any solution i could try? any help would be apperciated. problem with wsdl.wsdlprojectpro Im trying to run a testcase from a groovy script, this is the code : import com.eviware.soapui.impl.wsdl.WsdlProjectPro def x =testRunner.testCase.testSuite.project.getPath() WsdlProjectPro project = new WsdlProjectPro(x) testSuite = project.getTestSuiteByName("compositionOnes"); testCase0 = testSuite.getTestCaseByName("getToken"); testCase = testSuite.getTestCaseByName("insert - Success"); runner0 = testCase0.run(new com.eviware.soapui.support.types.StringToObjectMap(), false); runner = testCase.run(new com.eviware.soapui.support.types.StringToObjectMap(), false); def response = context.expand( '${#[compositionOnes#insert - Success#insert]#Response}' ) for some reason the script result is null unless i replace WsdlProjectPro project = new WsdlProjectPro(x) with project = testRunner.testCase.testSuite.project.workspace.getProjectByName("soapUIv3") if i do this it will work but i need to use wsdl because i have to use testrunner.bat later SolvedRe: Creating a jira item automatically Greetings, I know its avalaible i just need to create items automatically Re: How to run a testCase for each a testStep using tearDown script Greetings, i just added an assertion whenever i want to run the testStep. the script : import com.eviware.soapui.support.types.StringToObjectMap import com.eviware.soapui.impl.wsdl.testcase.WsdlTestCaseRunner def Runner = new WsdlTestCaseRunner(messageExchange.modelItem.testStep.testCase, new StringToObjectMap()) yourTestStep= messageExchange.modelItem.testStep.testCase.testSuite.project.testSuites["hDeliveries"].testCases["delete"].testSteps["deleteAll"] yourTestStep.run(Runner,context) Creating a jira item automatically I want to know if there's a way to create a jira item automatically for example whenever a teststep fails, if there's a way to get the code behind the popups that provides creating an item i could just use this code in a groovy script Any help would be really apperciated SolvedRe: Problem in DataSource while using testrunner.bat Greeting, unfortunately i dont have administrative access Re: How to run a testCase for each a testStep using tearDown script greetings, thank you msiadal i found another way to do it Re: Problem in DataSource while using testrunner.bat Greetings, its an exel file ,and i call open it from soapui and get values from it but it doesn't work when i use testrunner.bat. How to run a testCase for each a testStep using tearDown script Im trying to run a testCase (delete) before running any other testCase using tearDown script but i get scriptException: error in teardDown script. this is the code : def testStep = testRunner.testCase.testSuite.testCases['delete'].testSteps['deleteAll'] testSuite.getTestCaseList().each{ testStep.prepare(testRunner, context) testStep.run(testRunner, context) testStep.finish(testRunner, context) } any help would be really apperciated. SolvedRe: Problem in DataSource while using testrunner.bat Sorry for replying late, im using an exel file as a dataSource, it wokrs fine when i launch the testCase from SoapUI but when i launch the project using testrunner.bat i get java.io.FileNotFoundException on that testCase