08-06-2010, 09:35 PM
Hi,
If your application is web based application:
After executing this script finally you would get the instances i.e browsercount.
Please let me know for further clarification.
If your application is web based application:
Code:
OnErrorResumeNext
browsercount=0
For temp=1 to 100000 step 1
intbrowser=Browser("xxxxxxxxxxxxx").GetRoProperty("Creation time")
If len(intbrowser)>=1) Then
browsercount=browsercount+1
End If
If (len(intbrowser)=0) Then
Exit For
End If
Next
Please let me know for further clarification.