51Testing软件测试论坛

标题: 如何在对象属性里使用正则表达式? [打印本页]

作者: Grace    时间: 2008-4-7 16:52
标题: 如何在对象属性里使用正则表达式?
想打开以Invitation天头的link
Browse.thePage.Link("text:=.*Invitation*.", "Index:=0").Click
这样使用不正确吗?

[ 本帖最后由 Grace 于 2008-4-7 16:54 编辑 ]
作者: bagwell333    时间: 2008-4-7 17:34
肯定不行的.
可以参考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




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