06-08-2012, 08:41 PM
Code:
ExpectedProduct=Datatable("Product",dtLocalSheet)ExpectedPrice=Datatable("Price",dtLocalSheet)
ExpectedOrderDate=Datatable("Ord_date",dtLocalSheet)
RC=Browser(...).Page(..).WebTable(..).RowCount
For i=1 to RC
Actual_Product=Browser(...).Page(..).WebTable(..).GetCellData(i,2)
Actual_Price=Browser(...).Page(..).WebTable(..).GetCellData(i,3)
Actual_OrdDate=Browser(...).Page(..).WebTable(..).GetCellData(i,4)
If (ExpectedProduct=Actual_Product And ....... And ...... ) Then
Browser(...).Page(..).WebTable(..).ChildItem(i,1,"Link",0).Click
Exit for
End if
Next
Now its your turn to implement accordingly buddy