How can i open 5 multiple browser at once through QTP VB
script

Answers were Sorted based on User's Feedback



How can i open 5 multiple browser at once through QTP VB script..

Answer / panna lal jaiswal

We Can open as many as browser in QTP using Vb script at once
as:
Write the Below code in text pan & Click Run

for i=1 to 5
Systemutil.run"firefox.exe"

Next

Is This Answer Correct ?    12 Yes 0 No

How can i open 5 multiple browser at once through QTP VB script..

Answer / rayudu

Give URLs in URLS.txt documents and save

Set a= createobject("scripting.filesystemobject")
set b=a.opentextfile("c:\ray\URLS.txt",1,true)
i=1
Do while not b.atendofstream
c= b.readline
systemutil.Run"iexplore"
browser("name:=Google").Navigate c
browser("text:=.*").WaitProperty "text",c,10000
loop


Or else try with it


Set a= createobject("scripting.filesystemobject")
set b=a.opentextfile("c:\ray\URLS.txt",1,true)
i=1
Do while not b.atendofstream
c= b.readline
i=i+1
systemutil.Run c
browser("text:=.*").WaitProperty "text",c,10000
loop

Is This Answer Correct ?    3 Yes 0 No

How can i open 5 multiple browser at once through QTP VB script..

Answer / vistaraj

For i=1 to 5

set explore=createobject("InternetExplorer.Application")
explore.Visible=True
wait(2)
explore.navigate "www.timesofindia.com"

Next

Is This Answer Correct ?    3 Yes 0 No

How can i open 5 multiple browser at once through QTP VB script..

Answer / sadashivbyagi

for i=1 to 5
system.utilrun/invokeappliction"ie
explore".naigate"www.google.com"
next

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More QTP Interview Questions

What are the trigger events in qtp?

0 Answers  


What is the Command used to start the QTP

0 Answers   HCL,


How to identify the objects using descriptive programming when the object property values are same, i mean in a page 10 objects are there i want to click the 6th object but all the object property values are same? using descriptive programming

2 Answers   Genpact,


what are the issues we will get when there is migration from QTP 8.2 to QTP 10.0? Is there any problem in executing scripts of 8.2 on 10.0?

0 Answers  


How to call script1 into script2?

3 Answers  


Hello, Can we capture only the labels of the web page in the object repository. If yes, then how. Actually my scenario is: I have to capture all the label of mercury site http://newtours.mercuryinteractive.com/tour/mercurypurchase. php. and want to copy all these labels in the notepad. So,please help me how to do this all. Thanks in advance, Gaytri

4 Answers  


Explain actions in qtp ?

0 Answers  


what are build and version plz explain why nomber changes in build and version?

3 Answers  


Did you face the problem, changing the properties of an object in Run Time?

1 Answers  


1.can we parameterise object repository?how we can do it? 2.there is a name "mallikharjun".i want to get the vowels in it through VBSCRIPT?

3 Answers   Tech Mahindra,


please send detail navigation for merging of object ripositories in QTP 8.2

3 Answers   Infosys, Ordain Solutions,


How we can call the scripit from another scripit in QTP?,Not a call Action

12 Answers  


Categories