|
1 我使用的例子是mercury的飞机订票系统。
2 要实现的功能是用DATA TABLE进行参数化,有三个属性就行参数化。分别是“data of filght”,“fly to”和“fly to”。我已经在Action of order fight的Action CALL PROPERTY进行设置,RUN ALL ROW.其中“fly to”和“fly to”均进行正确参数化。
3 问题:1 data of filght 仍然是第一次遍历的值,第二次没有正确参数话。
Window("Flight Reservation").WinEdit("Name:").Set "test"
2 并且在遍历第二次时,取得Window("Flight Reservation").WinEdit("Name:").getROProperty("text")仍然是test,但是没有激活"Insert Order".
我发现上述两处都是都是键盘输入,而DATA TABLE参数化,QTP并不认为是键盘输入。
该如何解决呢?请高手指点一二。
Window("Flight Reservation").WinObject("Date of Flight:").Type DataTable("data_of_flight", dtLocalSheet)
Window("Flight Reservation").WinObject("Date of Flight:").WaitProperty "text",DataTable("data_of_flight", dtLocalSheet), 30
Window("Flight Reservation").WinComboBox("Fly From:").Select DataTable("fly_from", dtLocalSheet)
Window("Flight Reservation").WinComboBox("Fly To:").Select DataTable("fly_to", dtLocalSheet)
Window("Flight Reservation").WinButton("FLIGHT").Click
Window("Flight Reservation").Dialog("Flights Table").WinList("From").Activate 1
'msgbox(Window("Flight Reservation").WinEdit("Name:").GetROProperty("text"))
Window("Flight Reservation").WinEdit("Name:").Set "test"
msgbox(Window("Flight Reservation").WinEdit("Name:").GetROProperty("text"))
Window("Flight Reservation").WinButton("Insert Order").WaitProperty "enabled","true",60
Window("Flight Reservation").WinButton("Insert Order").Click
[ 本帖最后由 aishiteru 于 2010-2-7 13:28 编辑 ] |
|