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 scripting language is QTP of?
How to Analyze the Checpoint results by Checking Bitmaps?
anyone can explain about "Smart Identification" in QTP. what is the use of "Smart Identification" ???
what is verification & validation?
1. how can you handle exceptions without using recovery scenario?
is we can import the object repository from external source. if it so then how?
Do you support automated testing? Why?
How to upload excel files into Quality Center using QTP Script and how to delete excel files from Quality?
can we call a test in another test?
how will you check how many members visited the website www.infosys.com?
How do we retrieve the content from a text box in a web page
Does QTP run in any environment?