|
两个 script.
In ScriptA, the root action Action1 calls ActionA, which is a nested reusable action.
In ScriptB, the root action Action2 calls Action1.
In ActionA,我向文件 "..\TestResult.txt"中写数据, 文件的路径如下: (TestResult.txt is located in the directory where the ScriptA and ScriptB is located)
|_ScriptB
|_ScriptA
|_Action0
|_Action1
...
|_TestResult.txt
我运行 ScriptA的时候, 文件路径是正确的,它是向上面那个TestResult.txt里面写数据.
但是运行ScriptB的时候, 它调用了 Action1 and then ActionA,这时候它向QTP安装目录下面写文件(C:\Program Files\Mercury Interactive\QuickTest Professional)
我向 Tools->Options->Folders里面添加了期望的路径(SCRIPTB目录和SCRIPTB所在目录都试过了),但是它仍然是向 C:\Program Files\Mercury Interactive\QuickTest Professional下面的"TestResult.txt" 文件写数据
更为奇怪的是,这个ActionA里面我有另外的文件访问,如
Environment.LoadFromFile("..\..\EnvParam.xml")
ExecuteFile "..\..\Global.vbs"
Datatable.ImportSheet "..\TestCase.xls",Parameter("SheetSource"),CInt(Parameter("SheetDest"))
它们都能正确的工作,唯独这个textfile的访问不行。
怎么解决这个问题?
另外,我的脚本里包含命令行窗口的命令执行,以前运行的时候,打开命令行窗口,默认的当前路径是脚本所在目录,现在变成了C:\Program Files\Mercury Interactive\QuickTest Professional\bin(这也是Tools->Options->Folders里面添加目录时的默认设置),如何修改它默认的当前路径?(我查看Test->Setting-》Environment里面TestDir里面显示的是正确的脚本的目录,不是QTP安装目录)
[ 本帖最后由 aries1979 于 2006-3-15 18:18 编辑 ] |
|