how to read data from a csv file using Test complete
functional tool..please can anyone post the code
Answers were Sorted based on User's Feedback
Answer / prasad gali
HI Aparna,
Testcomplete is having Drivers to work with any database
such as CSV files,EXCEL files..
This is done in TestComplete using DDT project item.
DDT.CSVDriver("Application Path");
//then wotk with ur CSV file..
Regards
Prasad Gali
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / sheeja paul
var RecNo;
// Creates the driver (main routine)
function TestCSVDriver()
{
var Driver;
Driver = DDT["CSVDriver"]("C:\\MyCSVFile.csv");
// Iterates through records
RecNo = 0;
Driver["DriveMethod"]("csvread.ProcessCSVData");
// Closing the driver
DDT["CloseDriver"](Driver["Name"]);
}
function ProcessCSVData()
{
var i;
for(i = 0; i < DDT["CurrentDriver"]["ColumnCount"]; i++)
{
Log.Message(DDT["CurrentDriver"]["ColumnName"](i));
Log.Message(DDT["CurrentDriver"]["Value"](i));
}
RecNo = RecNo + 1;
}
// Content of MyCSVFile.csv is
//Head 1,Head 2,Head 3,Head 4,Head 5
//Z1,Z2,Z3,Z4,Z5
//Y1,Y2,Y3,Y4,Y5
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / rajkiran
Can we Pass Blank values through CSV file or Excel file to test complete? i tried but it shows "Type Mismatch" Error.
Please help.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nivedita
Can u please pass some piece of code for writing data or
inserting the values in the excel sheet using ddt driver
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the types of testing we cannot do, by using automation tools
what are the questions that are generally asked in an interview if a person is having 3-4 years of exp..and in ds exp 2 yrs exp is wd automation testing
What are the primary features of good automation tool ?
In realtime what is the Testing Process especially in automation plz its very urgent
hi to all, if we open a browser(for ex. yahoomail.com) using navigate command. the cursor by default focussing on the 'yahoo id' html edit box. how to get the label(ie.,yahoo id) of that html edit box using descriptive program. here we should not use identify tool to get the property,thtml editbox method. by tracing the cursor position we have to get the label name. is it possible? please let me know.
Hi, I want to learn DataBase Testing. So please some document or path so that i can get some material on DataBase Testing concepts (preferably SQL Server 2000). Thanks in advance, Guru
Describe some problem that you had with automating testing tool.
what is aom and how to add object repository? i am very new to QTP please help me
What is extreme programming and what has it got to do with testing?
What are the drawbacks of test automation?
How did you use automating testing tools in your job?
What is Automation Testing Framework