Two ways of doing it
1. remove that for loop and set "run on all rows" option
2.set "run one iteration only" option
1. remove that for loop and set "run on all rows" option
2.set "run one iteration only" option
Code:
For i= 1 to 99
'you missed this line
[b]Datatable.setcurrentrow i[/b]
Browser("Login").Page("UAR").WebEdit("customers[0].name").Set DataTable("Customer_name", dtGlobalSheet)
Browser("Login").Page("UAR").WebEdit("customers[0].taxIdNumberRaw").Set DataTable("TIN_Number", dtGlobalSheet)
Browser("Login").Page("UAR").WebButton("Add Customer").Click
Next