51Testing软件测试论坛
标题:
load gui文件的路径问题
[打印本页]
作者:
ilovezhoujoe
时间:
2006-11-2 15:08
标题:
load gui文件的路径问题
小弟现在需要将路好的脚本存到TD上,所以想将脚本用到的gui文件放到脚本所在的目录下,但是用相对路径load gui文件时有几个文件不能load进来,查找后发现通过相对途径load的gui文件是在一个临时目录下,而不是在脚本所在的目录.请教如果想要把gui文件和脚本同时上传到TD上,该把gui文件放到脚本的什么位置,并且路径怎么调用.谢谢了.
作者:
lxhcba
时间:
2006-11-13 11:04
gui文件放的位置没有限制的,放那里都可以,但是你要把你放的路径写清楚
public GuiPath = "Gui在TD的路径";
GuiFile=tddb_load_attachment ( "GuiName.GUI", GuiPath);
GUI_load(GuiFile);
作者:
jacky9947
时间:
2007-3-23 17:14
# get the test file path
static test_Path = getvar("testname");
# get the test table path
static DB_Path1 = test_Path & "\\login.xls";
static DB_Path2 = test_Path & "\\repair.xls";
# get the gui file path
static GUI_Path= test_Path & "\\111222.gui";
# load GUI
if(GUI_load(GUI_Path) == E_OK)
report_msg("GUI load success!");
作者:
dionysus
时间:
2007-3-24 12:46
把gui文件放到脚本文件夹下,之后用ls的方法就可以load了
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2