51Testing软件测试论坛

标题: 请教DP高手看是否QTP的BUG或其他用法错误 [打印本页]

作者: gy21st    时间: 2008-1-9 19:19
标题: 请教DP高手看是否QTP的BUG或其他用法错误
ChildObjects方法的参数中是一个properties对象,此处必须使用描述性编程的方法定义对象。
如果在value里使用了正则表达式,我发现怎么弄都不生效,childObjects取不到对象。

以下是代码,我打开一个notepad做测试
第一段是使用了正则表达式,找到的notepad窗体总是为0
第二段是没有用到正则表达式,可以找到notepad窗体数量为1
请教高手看是否有什么错误。
谢谢。
=========================
Set oDesc = Description.Create()
oDesc("text").Value = "U.*Notepad$"
oDesc("text").RegularExpression = True
Set OpenedNotepadWindows=Desktop.ChildObjects(oDesc)
msgbox OpenedNotepadWindows.Count ' you get 0
Window(oDesc).Close 'it always works
Set oDesc = Nothing

=========================
Set oDesc = Description.Create()
oDesc("text").Value = "Untitled - Notepad"
oDesc("text").RegularExpression = True
Set OpenedNotepadWindows=Desktop.ChildObjects(oDesc)
msgbox OpenedNotepadWindows.Count ' you get 1
Window(oDesc).Close 'it always works
Set oDesc = Nothing
作者: walker1020    时间: 2008-1-10 01:08
初步判断是 oDesc("text").Value = "U.*Notepad$"引起的。
1,你的QTP版本是?
2, 仔细检查一下 这个正则表达式是否可以达到你要的效果。
作者: jackymail    时间: 2008-1-10 01:48
替代方案:oDesc("regexpwndclass").Value = "Notepad"

Desktop好像有点问题,普通的根对象用这种方法没问题。期待正解

[ 本帖最后由 jackymail 于 2008-1-10 02:03 编辑 ]
作者: gy21st    时间: 2008-1-10 09:43
原帖由 walker1020 于 2008-1-10 01:08 发表
初步判断是 oDesc("text").Value = "U.*Notepad$"引起的。
1,你的QTP版本是?
2, 仔细检查一下 这个正则表达式是否可以达到你要的效果。


版主要带好头,不要为了没啥意义的积分灌白开水
作者: gy21st    时间: 2008-1-10 10:58
原帖由 jackymail 于 2008-1-10 01:48 发表
替代方案:oDesc("regexpwndclass").Value = "Notepad"

Desktop好像有点问题,普通的根对象用这种方法没问题。期待正解


看来是Desktop对象有问题。
打开notepda的font设置,运行下面代码,可以找到font对话框
Set oDesc = Description.Create()
oDesc("regexpwndtitle").Value = ".*t$"
oDesc("regexpwndtitle").RegularExpression = True
Set OpenedNotepadWindows=Window("regexpwndclass:=Notepad").ChildObjects(oDesc)
msgbox OpenedNotepadWindows.Count ' you get 1
Set oDesc = Nothing

没有其他办法的话,只好用GetROProperty绕过去了。

以下是国外论坛上找到的同样问题,有回复如下:

http://www.sqaforums.com/showfla ... PSESSID=#Post446909

==============================
Re: Newbie QTP Regular Expression Difficulties  [Re:  gy21st]
      #447101 - 01/09/08 08:31 AM        
Edit post Edit           Reply to this post Reply           Reply to this post Quote           Quick Reply Quick Reply  

ChildObject implementation is not always reliable and as per my recent SR with HP they told me that RE might not always work for some properties. And i doubt that Desktop.ChildObject would be as good as Browser().Page().ChildObjects

Because Desktop is not a TestObject but a reserved object.

--------------------
Tarun
作者: hsjzfling    时间: 2008-1-10 17:03
确实应该是Desktop.ChildObject 的问题,在帮助中也能看出它的一丝特殊性,估计还是mercury(HP)设计考虑不够周全




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