文件名称:QTP中调用共享文件个方法-QTP编程技术
文件大小:1.38MB
文件格式:PPT
更新时间:2024-05-15 09:58:32
QTP自动化
QTP中调用共享文件2个方法 1.利用ExecuteFile函数来调用.vbs文件 ExecuteFile(“F:\test.vbs”) ‘直接调用执行 .vbs文件 2.利用QTP本地共享资源文件(可以调用 *.sql;*.vbs;*.txt 三种后缀文件) Dim order order=1 writeorderno order Function writeorderno(orderno) Dim fso, myfile Set fso=CreateObject("scripting.FileSystemObject") Set myfile=fso.openTextFile("D:\qtp resources\result.txt",8,false) myfile.writeline orderno myfile.close End Function