QTP单选框如何参数化
本帖最后由 king0964 于 2011-8-25 15:16 编辑录制QTP自带订票系统,里面有一项是“first”“business”“economy”,怎么对其参数化?呼叫高手帮忙,谢谢 select param
参数化例子里面有,随便看本书或者帮助文档应该就明白了,很简单 有两种方法
今天就有下第一种:主要使用 settoproperty,修改对象库的对象
1 首先添加 First 单选按钮到 对象库中
2 我把它名字改为 radio,在这里我用了随机。
num=randomnumber.value(1,3)
Select Case num
case 1
Window("Flight Reservation").WinRadioButton("radio").SetTOProperty"text","First"
Window("Flight Reservation").WinRadioButton("radio").Click
Case2
Window("Flight Reservation").WinRadioButton("radio").SetTOProperty"text","Busness"
Window("Flight Reservation").WinRadioButton("radio").Click
case 3
Window("Flight Reservation").WinRadioButton("radio").SetTOProperty"text","Economy"
Window("Flight Reservation").WinRadioButton("radio").Click
end select 165403315
到该群一起聊聊 我会使用childobject,对象随即选的方法 回复 3# wangyanzhao
谢谢 wangyanzhao,该方法可以,有时间共享一下第二种方法
页:
[1]