标题: 遍历浏览器返回值为0 [打印本页] 作者: suroit 时间: 2013-5-29 20:30 标题: 遍历浏览器返回值为0 大家好,今天在学习QTP的过程中看见有如下方法可以枚举IE浏览器
Function EnumerateIE()
Dim allWindows,oWindow,wShell
On ERROR RESUME NEXT
Set EnumerateIE = CreateObject("Scripting.Dictionary")
Set wShell = CreateObject("Shell.Application")
Set allWindows = wShell.Windows
For each oWindow in allWindows
If InStr(1,oWindow.FullName,"iexplore.exe",vbTextCompare) Then
EnumerateIE.Add oWindow.hwnd,oWindow
End If
Next
MsgBox EnumerateIE.Count
End Function