ContributionsMost RecentMost LikesSolutionsRe: How to read data source values to list using groovy script? Hi Abhinav, Has your question every been answered? I am running into the same problem. Googled the soupui api library (https://www.soapui.org/apidocs/pro/com/eviware/soapui/impl/wsdl/teststeps/WsdlDataSourceTestStep.html), but it's not very descriptive of what each methods does. Every time I run my groovy script, which use the same code as yours, it only return me the last item on the list even thought the rows count was 8. I have tried all the following methods to try to reset back to the 1st row in the Datasource, but without any luck! repositionAtStartRow(com.eviware.soapui.model.testsuite.TestCaseRunner testRunner, com.eviware.soapui.model.testsuite.TestCaseRunContext context) restart(com.eviware.soapui.model.testsuite.TestCaseRunner testRunner, com.eviware.soapui.model.testsuite.TestCaseRunContext context) setStartRow(String startRow) --> with startRow = "1" Mun