04-12-2011, 01:56 PM
Thank you. So it would be like this? :
How do I do the script stop after 1 run according to condition? I mean, the value (E) will be in more rows but I want to run it only on the first row that matches.
Code:
row_count = DataTable.GetRowCount
For i=1 to row_count
temp = DataTable.Value("parameter_name")
If temp = "text string" then
SetCurrentRow(i)
run the test case
End If
Next
How do I do the script stop after 1 run according to condition? I mean, the value (E) will be in more rows but I want to run it only on the first row that matches.