How we can write the test result to an external file .For example to text files,notpad etc.. while running a script

Showing Answers 1 - 2 of 2 Answers

bizzzzzare

  • Oct 26th, 2007
 

Hey,

Try this out.....

set ObjFile = CreateObject("Scripting.FileSystemObject")
ObjWrite.OpenTextFile(fname)

Set objWrite = objFSO.OpenTextFile
objWrite.WriteLine(strArray())

\ Store your test results or any other data as an variant Array. - strArray()

objWrite.close

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions