Forum Discussion
SmartBear_Suppo
Alumni
14 years agoHi,
you have to manually move the datasource to the next row - try the following:
def ds = testRunner.testCase.testSteps['DataSource']
rowAdd = ds.getPropertyValue("Id")
listId.add(rowAdd)
while( ds.next( testRunner, context ))
list.add( ds.getPropertyValue("Id") )
...
Hope this helps!
/Ole
SmartBear Software
you have to manually move the datasource to the next row - try the following:
def ds = testRunner.testCase.testSteps['DataSource']
rowAdd = ds.getPropertyValue("Id")
listId.add(rowAdd)
while( ds.next( testRunner, context ))
list.add( ds.getPropertyValue("Id") )
...
Hope this helps!
/Ole
SmartBear Software