Hi Try the below function.... the concept is same as urs.....
*** calling the Function***
*** Let me know if u face any problem with this....
Code:
Function clickonlink(slinkname)
set slink = Description.create()
slink("micclass").value = "Link"
set a = Browser("micclass:=Browser").page("micclass:=Page").childobjects(slink)
scount = a.count
for i = 1 to scount
slink = a(i).getroproperty("name")
if slinkname = slink then
a(i).click
exit for
end if
next
end Function
*** calling the Function***
Code:
clickonlink("Signup")
*** Let me know if u face any problem with this....
