|
有两种方法
今天就有下第一种:主要使用 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 |
|