0 votes
in QuickTest Professional (QTP) by
recategorized by
How can you close the second opened browser?

1 Answer

0 votes
by

You can know which browser instance was opened after another can be known by using the “creation time” property. In simple terms, this is nothing but a counter for each browser instance that gets launched. For the first one, it is 0 and gets incremented from then on. To close the second opened browser, you can use the following code:

Browser(“creationtime:=1”).Close

Related questions

+1 vote
asked Apr 12, 2020 in QuickTest Professional (QTP) by amita rallin
0 votes
asked Sep 23, 2023 in Dot Net by Robin
...