How can we close all webbrowsers which are opened in out
desctop?
Answers were Sorted based on User's Feedback
Answer / venu
The following code can be used in order to close all the IE
browsers:
SystemUtil.CloseProcessByName "IEXPLORE.EXE"
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / meenakshisundharam
If browser(xxxx).Exist then
browser(xxxx).close
End if
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / syam
While Browser("CreationTime:=0").Exist
Browser("CreationTime:=0").Close
Wend
QTP Tip1: The first browser that opens receives the
value "CreationTime" = 0, the second browser
receives "CreationTime" = 1, and so on...
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / d.selvakumar
SystemUtil.CloseProcessByName "iexplore.exe"
pls use small letters
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / chandrashekar reddy
there are 2 ways to close the all browsers in qtp
1) we can use while..... wend 2) we can use
description.create method
1) while Browser("index:=0").exist (1)
browser(index:=0).close
wend
2) set ab=description.create
ab("micclass").value="Browser"
set obj=Desktop.childobjects(ab)
b=obj.count
msgbox b
for i= 0 to b-1
names=obj(i).getroproperty("name")
msgbox name
obj(i).close
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / joseph
Tested in tool -
Answer 1 is right
Answer 3 is right
Answer 5(1) - Update (browser(index:=0).close) to browser("index:=0").close
Answer 5(2) - Need to include 'Next' for 'For' loop
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ram shankar
visit below URL, you can get qtp browsers scripts
http://www.gcreddy.com/2010/01/qtp-web-testing-scripts.html
| Is This Answer Correct ? | 0 Yes | 2 No |
How u prepare Test result summary in QTp?
Plz Explain AUTOMATION REFERENCE MODEL?
What is post recovery scenario?
How to data driven test for Win objects in QTP ?
i have a doubt can anyone tell me where are scripts stored while using QTP.Tell me the exact procedure takes place in real time?like how we call scripts how to proceed after writing scripts?how scripts are executed etc?i heard some use Qc whether others dont use.so tell me whole procedure for both the things it will be a very big help.as i have interview i want to have whole idea on this.its very urgent.
0 Answers RR Donnelley, RRDonnelley,
How to Synchronize the Browser at Field level? For example if you put Browser.sync(), it will wait upto for that Browser sync only. But It should wait upto total Browser get uploaded with all fields. Note : We don't know Which fields will come in that Browser. Means without knowing field names.
how we can know qtp has used smart identification machanism during the execution.
Use of Multiple Actions in QTP?
What is meant by virtual obj and Y do v need virtual obj configuration.
Explain the views in the QTP GUI?
Can any body tell me how can I choose the share object repository and per action object repository mode. Please give me with steps.
what is descriptive programming in QTP? How can be done?