51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 1456|回复: 1
打印 上一主题 下一主题

[原创] 如何在对象属性里使用正则表达式?

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2008-4-7 16:52:48 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
想打开以Invitation天头的link
Browse.thePage.Link("text:=.*Invitation*.", "Index:=0").Click
这样使用不正确吗?

[ 本帖最后由 Grace 于 2008-4-7 16:54 编辑 ]
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

该用户从未签到

2#
发表于 2008-4-7 17:34:25 | 只看该作者
肯定不行的.
可以参考yabest的代码,理解后改动改动就行。
一定要得到运行时的实际对象,然后遍历调用click。

SystemUtil.Run "C:\WINDOWS\system32\calc.exe","","C:\WINDOWS\system32","open"

HightLight_All_Object Window("regexpwndclass:=SciCalc").WinButton("text:=[0-9]")

Function Get_All_Runtime_Objects(TestObject, RuntimeObjects)

       Dim Parent, Desc, Props, PropsCount
       If IsEmpty(TestObject.GetTOProperty("parent")) Then
              Set Parent = Desktop
       Else
              Set Parent = TestObject.GetTOProperty("parent")
       End If

       Set Desc = Description.Create
       Set Props = TestObject.GetTOProperties
       PropsCount = Props.Count - 1
       For i = 0 to PropsCount
              Desc(Props(i).Name).Value = Props(i).Value
       Next
          
       Set RuntimeObjects = Parent.ChildObjects(Desc)
       Get_All_Runtime_Objects = RuntimeObjects.Count
End Function


Function HightLight_All_Object(TestObject)
        Dim allRuntimeObjects
        Dim objIndex, objNum
        objNum = Get_All_Runtime_Objects(TestObject, allRuntimeObjects)
        For objIndex = 0 to ObjNum-1
          allRuntimeObjects.Item(objIndex).click
        Next
End Function
回复 支持 反对

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-11-8 03:47 , Processed in 0.067394 second(s), 27 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表