How do you organise your limit file.
Do you have a different Start/End Marker for each of your iterations
so that you have the correctly named step(s) between the markers?
You could try loading an array of limits into a local array(s) from
your Limit File then index through the array as the datasource for your
limits. Remember its a PropertyLoader, so its not limited to just
limits. That way you only read it once and you are not tied to the Step
name.I originally had all limits within a single Start-End marker pair. Having now given each limit set an individual Start-End marker and setting PropertiesListSource dynamically in the Loader Step in the loop, that works OK. Perhaps not so elegant still as each iteration of the loop requires a Property Loader step instead of loading everything in one hit (I'm guessing there has to be some performance overhead in multiple property loader calls vs. a single load of all limits) but at least there are no errors on the loader step now I am only loading that test which exists after the loop rename.The alternative of loading data into arrays had ocurred to me and I may experiment with this if performance becomes an issue with the first approach.Thanks for your reply Ray, its much appreiated.