+1 vote
in QuickTest Professional (QTP) by
recategorized by
How do know the number of browsers opened?

1 Answer

0 votes
by

To do this you will have to check how many child objects of the type ‘browser' are present on the desktop. The following is the code that explains it:

Set ObjectBrowser = Description.Create
ObjectBrowser(“micclass”).Value = “Browser”
Set BObj = Desktop.ChildObjects(ObjectBrowser)
Msgbox Obj.Count

Related questions

+1 vote
asked Dec 4, 2019 in JavaScript by SakshiSharma
+2 votes
asked Jul 4, 2021 in NumPy by sharadyadav1986
...