ContributionsMost RecentMost LikesSolutionsRunning test step with context I have Soap Request test step name as Add and Groovy Script test step name as Run In Run test step I have following code which is responsible to run Add test step def stored = testRunner.testCase.testSteps["Add"] stored.run(testRunner,context) Can someone explain me what is the use of testRunner and Context in run method? Note: I have got 2 line of code from internet. SolvedRe: Downloading a JSON file after hitting soap UI https requestYes , I am looking this solution, If you can help , It will be great help by providing some scripts.Re: Downloading a JSON file after hitting soap UI https requestHi ZDGN Manual Testing approach I am hitting a request in soap UI, Soap UI is providing me some respone. But internally API is creating 6 json file in the specific repository location with the current date and time name which looks like link, then I am clicking on file to download it and verifing the contents inside the file. I wanted to automate this part through soap UI. Hope I am able to explain you Re: Downloading a JSON file after hitting soap UI https requestHi It will be helpful when I will receive attachment in the response, but in my case I need to download it from browser after hitting the API request. Anyhow your solution may found helpful in future API testingRe: Downloading a JSON file after hitting soap UI https requestHi richie I saw the solution given by nmrao but got struck after finding the particular file name in the response, do we need to add "/download" into our url for downloading? If any of you can elaborate, it will be great help. Because ,I can see in response html structure is coming with file name but how to download them or see the contents of file is the problem Struck part http://fsb-adm1-ta.names.belgium.be:XXXX/palngv3debug/download/" + it.text() def url = "http://fsb-adm1-ta.names.belgium.be:XXX/palngv3debug/download/" + it.text() Downloading a JSON file after hitting soap UI https requesthave one requirement to automate in SOAP UI Open source Where I need to hit a https url and after hitting the url I need to download a json file for further use I am able to login and browse the file location by using Basic Authorization. In response, I can see the files name in html format.But further I wanted to download the file in local machine or to see a content of the file in the soap UI response so that assertions can be added. Please suggest if there is any other approach in soap UI where we can download a file or see a content of file after hitting the https URL.Re: How to read data from properties test step and add assertionHi Reede, Thanks, Is there any way we can get mutiple value from properties test step using loop? How to read data from properties test step and add assertion I have properties test step with some data which is generating on runtime based on the request message, I wanted to read the data from Properties test step and adding a assertions on groovy test step. SolvedRe: How to add oracle row record in properties test step as key value pair in Soap UI toolHi Himanshu, Agreed with the solutions.Thanks for the reply. I have another concern on the same issue but I am not sure whether I asked this in the question or ask a new question. Can you please suggest ?How to add oracle row record in properties test step as key value pair in Soap UI tool In Soap UI, I am able to connect oracle database using groovy Script. then I fetched one record from the table.Now I wanted to know how we can set the record as key value in properties test step. So I can assert the record in next script Solved