What is the logic for reading(exporting)the data from flat
files to QTP?Can anyone explain me with an example?
I appreciate it!!!
Thanks!!!
Prasanna
Answer / jhansi rani
the process is
assume the flat file is "abc.txt" which consists of some
data like sno and sname.
first we need to create object for that txt file like
set fso=createobject("scripting.filesystemobject")
next open that file using that fso
set f=fso.opentextfile("path of the txt file",mode)
1 --- readingmode
2 --- writing mode
8 --- append mode
while f.atendofline <> true
f.readline --- to read the line from the text file
.
.
.
.
.
perform require operations
wend
so total script is as follows
Set fso=createobject("scripting.filesystemobject")
Set f=fso.opentextfile("E:\testingexamples\abc.txt",1)
While f.atendofline <> true
msgbox f.readline
wend
| Is This Answer Correct ? | 3 Yes | 0 No |
what could go wrong with test automation?
How to automate a script in mainframes environment? I have the terminal emulator Add in. Describe in detail.
What is our exact stage involvement with QTP?
what are the disadvantages of qtp? can linux support qtp9.2? how could get web address throu vbscript?
what is the test object?
I want to execute 1st row of the local sheet and 3rd row of the global sheet parellely. write script to execute
In QTP what is the difference between Step-in, Step-out, Step-over ?
Can you write a script to check if the folder exists or not?
Tell me the difference between the Data Driven Frame work and Keyword Driven frame work?
how to do regression testing in qtp? plz give ans with examples
HOW TO DO THE BATCH TESTING USING QTP?
How to convert QTP's ObjectRepository.mdb file to xml file