several browsers opened. write QTP script to close all browsers except gmail.
Dim d Set d=Description.Create d("micclass").value="Browser" Set a=Desktop.ChildObjects(d) For i=0 to a.count-1 s=a(i).GetROProperty("title") If instr(1,s,"Gmail")=0 Then a(i).Close End If Next