08-24-2010, 09:46 PM
Hi,
If you want to check the existance of the specific data in the webtable you can use the "GetRowWithCellText" method which will retrive the row number where the data is displayed.
Please let me know if you need any more information.
If you want to check the existance of the specific data in the webtable you can use the "GetRowWithCellText" method which will retrive the row number where the data is displayed.
Code:
For intSearchColumn= 1 to Browser().Page().Frame().WebTable().ColumnCount(1)
IntRowNum = Browser().Page().Frame().WebTable().GetRowWithCellText("10337893",intSearchColumn)
If IntRowNum > 1 Then
msgbox "Data found in Column : " & intSearchColumn & " Row : " & IntRowNum
Exit For
End If
Next
Please let me know if you need any more information.
Thanks,
SUpputuri
SUpputuri