07-09-2013, 02:06 PM
Try this code, it click on this link
Code:
Set oLink = Browser("title:=Welcome to Indian Railway.*").Page("title:=Welcome to Indian Railway.*").Link( "innertext:=Revised Refund Rules w.e.f. 01.07.2013.*")
If oLink.Exist then
If oLink.GetROProperty("visible") Then
print "Link is visible"
oLink.Click
else
print "Link exists but is not visible"
End If
else
print "Link does not exist"
End If