51Testing软件测试论坛

标题: Type mismatch: 'Window'的问题 [打印本页]

作者: kevin_swpi    时间: 2009-10-8 11:01
标题: Type mismatch: 'Window'的问题
Msgbox shell_ReturnIEName_NEM

        Public Function shell_ReturnIEName_NEM()
                Set shell = CreateObject("Shell.Application")  
                set ie = createobject("internetexplorer.application")
                Set shellWindows = shell.Windows()
                For Each ie In shellWindows
                        If InStr(1,ie.FullName,"IEXPLORE.EXE",vbTextCompare)   <>   0 then
                                  shell_ReturnIEName_NEM = Window("hwnd:=" &ie.HWND).GetROProperty("Name")
                        End If
                Next
               
                Set shellWindows = Nothing
                Set shell = Nothing
        End Function

----------------------
上诉代码执行的时候,提示Type mismatch: 'Window'
之前我运行时候都是正确,假期回来后运行就发现提示这个问题  
不知道什么原因,麻烦大家看看,赐教

谢谢
作者: ermine    时间: 2009-10-8 12:14
试了一下,没有出现错误。。不晓得

[ 本帖最后由 ermine 于 2009-10-8 12:16 编辑 ]
作者: kevin_swpi    时间: 2009-10-8 14:28
标题: 回复 2# 的帖子
。。。
我之前运行也没有问题  假后回来就出现这个问题
我到同事他们机子上面看也是一样的。。。。

在VBSEdit上面  提示type mismatch
在qtp里面运行提示Cannot identify the object "[ Window ]" (of class Window). Verify that this object's properties match an object currently displayed in your application.......

[ 本帖最后由 kevin_swpi 于 2009-10-8 14:41 编辑 ]
作者: ermine    时间: 2009-10-8 15:11
VBSEdit 应该不行的,Window("hwnd:=" &ie.HWND).GetROProperty("Name")是QTP里的用法。
如果用QTP找不到window对象,debug取一下ie.HWND,再用spy看下存在的IE窗口的hwnd,看看是不是一样。我用的是10.0,是可以的~~
作者: kevin_swpi    时间: 2009-10-8 16:51
找到原因了  通过看进程发现IE在浏览器关闭后  IE进程还存在
大家可以执行下下面两个进行比较
                Set shell = CreateObject("Shell.Application")  
                set ie = createobject("internetexplorer.application")
                Set shellWindows = shell.Windows()
                 msgbox shellWindows.count

                Set shell = CreateObject("Shell.Application")  
                Set shellWindows = shell.Windows()
                 msgbox shellWindows.count
通过执行就会发现 一个是1  一个是0

原来是这句话惹的话  创建了一个ie对象
set ie = createobject("internetexplorer.application")
这句在执行的时候就会导致多了一个空的ie对象  从而报错
shell_ReturnIEName_NEM = Window("hwnd:=" &ie.HWND).GetROProperty("Name")

呵呵 结贴!
作者: kevin_swpi    时间: 2009-10-8 16:52
原帖由 ermine 于 2009-10-8 15:11 发表
VBSEdit 应该不行的,Window("hwnd:=" &ie.HWND).GetROProperty("Name")是QTP里的用法。


顺便说一下  这个说话应该不妥当吧 呵呵




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2