06-07-2012, 12:14 PM
Hi ,
By looking at ur screen shot it looks like column remains same.
Try below script and let us know the result
By looking at ur screen shot it looks like column remains same.
Try below script and let us know the result
Code:
If Browser("Browser").Page("ShipmentLink - Sailing_2").WebTable("Seq_2").Exist(5) Then
a_rows = Browser("Browser").Page("ShipmentLink - Sailing_2").WebTable("Seq_2").GetROProperty("rows")
For r = 1 to a_rows
a_celldata = Browser("Browser").Page("ShipmentLink - Sailing_2").WebTable("Seq_2").GetCellData(i,j)
If a_celldata = "Details" Then
Set objChildItem = Browser("Browser").Page("ShipmentLink - Sailing_2").WebTable("Seq_2").ChildItem(r, 11, "WebElement",l)
objChildItem.Click
End If
Next
Else
Msgbox "Required Table does not exists"
End If