Hi,
No, html id and row id are different. U have to navigate through all rows using for loop.
This is a rough code..u can get a feel of what u need to do.
Regards,
Sankalp
No, html id and row id are different. U have to navigate through all rows using for loop.
Code:
For i=1 to rowcount
if <condition to check the required data on particular cell of table>
set objLink=Browser().page().webtable().childitem(i,5)-->get the link to Click
objLink.Click
msgBox("Row id for this link was"&i)
Next
This is a rough code..u can get a feel of what u need to do.
Regards,
Sankalp