关于让WR自动加载被测程序的问题
# 判断被测程序是否存在#static app_name="D:\WinRunner\samples\flight\app\flight4a.exe";
if (invoke_application("flight4a.exe", "", "D:\WinRunner\samples\flight\app\","SW_SHOWMAXIMIZED")!=0
{
report_msg("被测文件不存在,测试退出!");
texit;
}
# Login
set_window ("Login", 5);
edit_set ("Agent Name:", "stanheke");
password_edit_set("Password:", "kzptnyoslzjsaz");
button_press ("OK");
运行这段代码会提示错误:
G:\WinRunner\Test_Login(4):
Error:Unterminated String
目的是让WR自动加载被测程序
问题是错误提示该如何解决?谢谢 appfile_path="D:\WinRunner\samples\flight\app\flight4a.exe";
if(invoke_application(appfile_path,"","",SW_SHOW)!=0)
{
report_msg("被测文件不存在,测试退出!");
GUI_close(guifile_path);
texit;
}用这个你试试看看。 问题找出来了
原因是在if判断的时候没有把括号写全。
谢谢楼上的提示 ^_^
不过WR没有自动加载被测程序,这点该如何解决呢? D:\\WinRunner\\samples\\flight\\app\\flight4a.exe 谢谢 zhenhaiou 的提示
问题已解决 ^_^
页:
[1]