Hi ,
The below code is working for me.......I am not getting any errors as u said.......
Infact the length of roval(len(roval)) is not equal to the length of toval(len(toval)) .....(it seems roval is taking extra blank space , hence i have used "trim" while retrieving roval....So its fine now .....as below code )
Code :
The below code is working for me.......I am not getting any errors as u said.......
Infact the length of roval(len(roval)) is not equal to the length of toval(len(toval)) .....(it seems roval is taking extra blank space , hence i have used "trim" while retrieving roval....So its fine now .....as below code )
Code :
Code:
'systemutil.run "www.yahoomail.com"
Dim links
Set links=description.Create
links("micclass").value="Link"
Set li=browser("Yahoo! Mail: The best").Page("Yahoo! Mail: The best").ChildObjects(links)
print li.count
For i=0 to li.count-1
roval=trim(li(i).getroproperty("outertext"))
print roval
wait(1)
toval=browser("Yahoo! Mail: The best").Page("Yahoo! Mail: The best").Link(roval).gettoproperty("outertext")
print toval
Next