01-16-2008, 06:59 PM
(This post was last modified: 01-16-2008, 07:00 PM by Rajashekar Gouda.)
Manju,
I guess if u go for Record and Play there u can give only one ur address.But for ur question i can give the solution in DP...Following is the code of DP which opens google url first and then closes that,then it opens yahoo url and closes
Regards
Raj
I guess if u go for Record and Play there u can give only one ur address.But for ur question i can give the solution in DP...Following is the code of DP which opens google url first and then closes that,then it opens yahoo url and closes
Code:
Dim br,url1,url2
br = "C:\Program Files\Internet Explorer\IEXPLORE.EXE"
url1 = "www.google.com"
url2= "www.yahoo.com"
systemutil.Run br,url1,"","",3
Browser("name:=Google").Close
systemutil.Run br,url2,"","",3
Browser("name:=Yahoo!").Close
Regards
Raj