|
请参看下面代码
# 获得当前测试的路径
static test_Path = "\\F:\test\test1";
# 设置需要打开的ie链接地址
static main_Path = "http://10.8.2.236:7001/maincenter/login_oms.htm";
# 获得存放测试数据的表路径
static DB_Path = "\\F:\test\test1\login.xls";
# 获得GUI文件的路径
static GUI_Path= "\\F:\test\test1\login.gui";
# 载入GUI
if(GUI_load(GUI_Path) == E_OK)
report_msg("载入GUI成功!");
# 连接测试数据表
ddt_close(DB_Path);
ddt_open(DB_Path);
# 打开链接
web_browser_invoke(IE,main_path);
但是执行到最后一步的时候系统提示我web_browser_invoke丢失?
是什么意思? |
|