51Testing软件测试论坛

标题: 在qtp中打开一个已知路径的文本文件的方法是什么? [打印本页]

作者: xiasan2004    时间: 2007-11-29 17:35
标题: 在qtp中打开一个已知路径的文本文件的方法是什么?
如题
已知路径的文本文件是外部文件
作者: gy21st    时间: 2007-11-29 17:52
text文件
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set OpenFile = fso.OpenTextFile(sFilename, iomode, create)
作者: joseph_wh    时间: 2007-11-29 18:01
Opens a specified file and returns a TextStream object that can be used to read from, write to, or append to the file.
  1. object.OpenTextFile(filename[, iomode[, create[, format]]])
复制代码
For example:
  1. Const ForReading = 1, ForWriting = 2, ForAppending = 8
  2. Dim fso, f
  3. Set fso = CreateObject("Scripting.FileSystemObject")
  4. Set f = fso.OpenTextFile("c:\testfile.txt", ForWriting, True)
  5. f.Write "Hello world!"
  6. f.Close
复制代码

作者: xiasan2004    时间: 2007-11-30 09:03
还忘了说一句要让文本文档在测试结束后打开可见
楼上两位兄弟说的是如何声明与引用
如何visible是我关心的
我想总不至于是f.visible吧或者OpenFile.visible

[ 本帖最后由 xiasan2004 于 2007-11-30 09:04 编辑 ]
作者: gy21st    时间: 2007-11-30 09:19
两回事情。这个也太简单了点。
systemutil.run "notepad.exe", "xxx.txt"
作者: xiasan2004    时间: 2007-11-30 09:34
哈哈,是啊,我也知道很简单,但我不知道那个方法去实现啊,会者不难,但难者不会啊
这个方法我是知道的,可是没有想到去用在这里啊。我老是在想着用的是什么方法去实现的
问题,好的
问题解决了,谢谢楼上的回答
又学会一个方法啊
作者: yeziqingqing    时间: 2007-11-30 10:43
呵呵,还能这么玩,又长见识了!
作者: pbulic    时间: 2007-11-30 11:19





欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2