还有一个问题,General Options中Folders下面的Search path for called tests主要是用来干什么的?作者: dionysus 时间: 2007-3-2 19:33
相对路径是针对当前脚本的位置,一般我习惯新建一个文件夹,里面存放相关脚本和gui文件,这样脚本中调用gui或者其它脚本都可以使用.\\这样的相对路径方式
Search path for called tests这个功能是当脚本中没有给出调用脚本的路径时,WR将从这里所有列出的路径下搜索脚本作者: HYDD 时间: 2007-3-5 09:10
谢谢啊。
虽说Search path for called tests中给出的是搜索脚本的路径。我发现一种现象
例如:invoke_application("C:\\Program Files\\HongYe\\Acs60-R16\\HyAcs.exe","","",SW-SHOW);
如果我在Search path for called tests中加入路径:C:\Program Files\HongYe\Acs60-R16。我使用:invoke_application(".\\HyAcs.exe","","",SW-SHOW);也可以打开程序。如果不加入这个路径,后面程序是打不开的。作者: jacky9947 时间: 2007-3-23 16:06
# 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";