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

...