ContributionsMost RecentMost LikesSolutionsRe: Unable to Call Test Step in another test case by using Groovy scripts I guess it should be testCase instead of testCase -> tcase = project.testSuites["TestSuite3"].testCase["TestCase2"]; Re: Unable to Call Test Step in another test case by using Groovy scripts Replace Flower braces({}) with Square braces ([]) while accessing testSuites/ testCases/ testSteps, project = testRunner.testCase.testSuite.project; tcase = project.testSuites["TestSuite"].testCases["TestCaseName"] hello = tcase.getTestStepByName("Hello"); testStep.run(testRunner,context) context.Hello.sayHello("Anil") This can be replaced by, hello = testRunner.testCase.testSuite.project.getTestSuiteByName('TestSuite').getTestCaseByName('TestCaseName').getTestStepByName('Hello') Re: MarkLogic DB connection Hello cghanapu, You should be able to connect to your Marklogic database through Marklogic Java client. Here are some documents where you can start with, Marklogic Java client - https://github.com/marklogic/java-client-api (Place the Jar under {%SoapUI Install dir%}/bin/ext) Documentation - https://developer.marklogic.com/try/java/index Sample code: import com.marklogic.client.DatabaseClient import com.marklogic.client.DatabaseClientFactory import com.marklogic.client.document.JSONDocumentManager import com.marklogic.client.io.StringHandle // Initiate Marklogic connection client = DatabaseClientFactory.newClient("localhost", 8003, "username", "password",Authentication.DIGEST) docMgr = client.newJSONDocumentManager() // Read/ Write operation doc = docMgr.read("/afternoon-drink", new StringHandle()).get() docMgr.write("/afternoon-drink", new StringHandle("{name: \"Iced Mocha\", size: \"Grandé\", tasty: true}")) Please alter the data in the above code according to your need. Thanks, Kondasamy Re: AUTO RESOLVE SCHEMA CHANGES AT PROJECT LEVEL Yes I will do the pull request on your repository. I would be happy to help with testing and using it in both OS and Pro version. I like the media type changing idea as well. Thanks, Kondasamy Re: AUTO RESOLVE SCHEMA CHANGES AT PROJECT LEVEL rupert_anderson: Excellent try it is; I have tested it in my SoapUI OS and it works fine. Here are my feedback thought to say, This could be extended to SOAP requests/ operations as well Currently actions.xml is not within the packaged JAR; it would be better if comes within the JAR (I hope this will be done in Phase 2 of your project goal) This plugin style follows legacy development approach, which could be improved with the new style of coding which makes to easily fit into the plugin manager of Ready API. I also have some more extended idea to modify nodes of XML or JSON, which can be kept optional right now. I also wish to do a pull request and would like to contribute, if you don't have any concerns. Thanks, Kondasamy Re: Unable to find cookie after redirect I see a similar question here - https://community.smartbear.com/t5/SoapUI-Open-Source/Cookie-issue-with-SoapUi-5-1-2/m-p/116614/highlight/true#M20121. Please check the solution posted there helps. If not, could you please share us the output of this piece of code :: messageExchange.responseHeaders.containsKey('Set-Cookie') Thanks, Kondasamy Re: How to transfer TestCase properties value in Authentication(Oauth2.0) Access Token field ? I'm taking your code as a start, def responseHeader=teststep.testRequest.response.contentAsString def slurper = new JsonSlurper() def json = slurper.parseText responseHeader def token=json.access_token testRunner.testCase.testSuite.testCases["login and update"].setPropertyValue("access_token",token) You are setting the test case level property here called "access_token". You can use the property expansion as ${#TestCase#access_token}. This will work only within the test case. The property expansion has to be modified if you need to access from a different test cases. I would recommend to set it as a project level property, the scope is large. Here is the reference - https://www.soapui.org/scripting---properties/property-expansion.html Thanks, Kondasamy Re: Long delay causes test to hang Can you please try running with the recent version - SoapUI 5.2.1 and let us know what you see. Thanks, Kondasamy Re: Problemon With XPATH in Properties Transfer I guess the XPATH is incorrect. Please try the below one including the name space declaration and let us know the result, declare namespace ns1='http://ws.com'; declare namespace ns2='http://ws.com/xsd'; //ns1:execute[1]/ns1:message[1]/ns2:node[1]/text() Thanks, Kondasamy Re: After running a SoapUI, could not start selenium I guess you got the solution from Stack overflow. Posting here the link to solution, just in case anyone faces in future - http://stackoverflow.com/questions/39403993/after-run-a-soapui-could-not-start-selenium Thanks, Kondasamy