安偌 发表于 2011-7-5 18:43:31

如何提取第5次密码输入错误后弹出的第二个UI中的提示信息

应用程序:飞机订票系统
标题:登录错误验证
前置条件:已提取前四次密码错误时提示,并判断了正确与否
目标:提取第5次密码错误提示后第二个UI中的提示信息并作出判断
PS:第5次密码错误后,点击[确定]按钮,会弹出另一个UI,提示“Login unsuccessful. Please try again later.”,再点击[确定]该flight4a.exe程序会自动关闭

我是将预期结果保存在Global的某一列中,再将每次提取出来的结果保存另一列,然后进行对比判断
而在执行第5条用例时无法连续获取第二个提示信息并判断

安偌 发表于 2011-7-6 08:54:47

:o:o:o
自己先顶下

shingo0109 发表于 2011-7-6 09:40:18

LZ可以在点击确定之后再加个if判断,如果弹出窗口存在,则再GetROProperty文本, 然后再判断

安偌 发表于 2011-7-6 12:28:26

回复 3# shingo0109

恩,这个方法昨天我尝试过,结果不行
今天又重新对脚本做了调整,可以了
systemutil.CloseProcessByName("flight4a.exe")
systemutil.Run("D:\Program Files\HP\QuickTest Professional\samples\flight\app\flight4a.exe")
Dim A_result,E_result,i
For i=1 to datatable.GetSheet("Global").GetRowCount
Dialog("Login").WinEdit("Agent Name:").set datatable("login_name",dtGlobalsheet)
Dialog("Login").WinEdit("Password:").set datatable("login_password",dtGlobalsheet)
Dialog("Login").WinEdit("Password:").TypemicReturn
Dialog("Login").Dialog("Flight Reservations").Static("Please enter agent name").Output CheckPoint("msg")
A_result=datatable("e_result",dtGlobalsheet)
E_result=datatable("a_result",dtGlobalsheet)
If E_result<>A_result Then
        reporter.ReportEvent micFail," 错误提示验证","预期结果为:"+E_result+",实际结果为:"+A_result
End If
Dialog("Login").Dialog("Flight Reservations").WinButton("确定").Click
IfDialog("Login").Dialog("Flight Reservations").Exist(2)Then
a_information=Dialog("Login").Dialog("Flight Reservations").Static("Please enter agent name").GetROProperty("text")
e_information=datatable("messige",dtGlobalsheet)
End If
If e_information<>a_information Then
        reporter.ReportEvent micFail,"第5次密码错误验证","预期结果:"+e_information+",实际结果:"+a_information
        Dialog("Login").Dialog("Flight Reservations").WinButton("确定").Click
        systemutil.Run("D:\Program Files\HP\QuickTest Professional\samples\flight\app\flight4a.exe")
End If
datatable.GetSheet("Global").SetNextRow
Next


页: [1]
查看完整版本: 如何提取第5次密码输入错误后弹出的第二个UI中的提示信息