ContributionsMost RecentMost LikesSolutionsRe: Looping datasources in Groovy I didn't get answer on how to do it progammatically but if I found if you right-click on the datasource there is an option to 'Restart Datasource when this step is run' Re: Looping datasources in Groovy Thanks tried but nothing happened: .repositionAtStartRow( testRunner, context) Looping datasources in Groovy I have 2 datasources in my test the first "DataSourceRESTData" supplies data for builing a REST request but before I execute the REST request I need to validate some of this data against a column in my 2nd data source "DataSourceValidEntries". I want to loop though each row in the "DataSourceValidEntries" to verify the data form "DataSourceRESTData" using Groovy Looping through "DataSourceRESTData" works fine and the the first time the method below is executed... all column entries get printed but on the second loop around only the last value get printed 5250 times. boolean isValid(checkifValid){ //testRunner.testCase.getTestStepByName('DataSourceValidEntries').repositionAtStartRow( testRunner, context) //Doesn't seem to rest the row number in DataSourceValidEntries def ds = testRunner.testCase.getTestStepByName('DataSourceValidEntries') //def rowsToRead = testRunner.testCase.getTestStepByName('DataSourceValidEntries').size; //This doesn't work so its hard coded below def rowsToRead = 5250; for (row in 1..rowsToRead) { def colvalue = ds.getPropertyValue('ABC'); log.info "Column Value: " + colvalue; testRunner.testCase.getTestStepByName('DataSourceValidEntries').next(testRunner, context) if(colvalue.equals(checkifValid)){ log.info "Found: " + checkifValid; return true; } } return false; } I've looked at the tips and tricks section for groovy but cant seem to figure this out. What am I missing? Regards Sod Re: Using custom jar in groovy script Thanks... the issue was with my import!! :smileyembarrassed: Using custom jar in groovy script Hi all, I am trying to use acustom jar in a groovy test script but I get the error org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed: Script4.groovy: 1: unable to resolve class xxx.yyyy.util.Util @ line 1 when my script calls import xxx.yyyy.util.Util; I have added the relevant jar to: C:\Program Files\SmartBear\ReadyAPI-1.4.1\jre\lib C:\Program Files\SmartBear\ReadyAPI-1.4.1\bin\ext Restarted ReadyAPI What am I missing or doing wrong? Any help much appreciated Thanks Solved