Ask a Question

Please add a RowCount property to DDTDriver object

0 Kudos

Please add a RowCount property to DDTDriver object

Please add a RowCount property to DDTDriver object. At the moment, there is only ColumnCount property available and the only way how to get the row count seems to be using below code:

 

let csvRowCount=0;
DDT.CSVDriver("c:\\path\\to\\file.csv");
while (!DDT.CurrentDriver.EOF())
{
  csvRowCount++
  DDT.CurrentDriver.Next();
}

 

Thanks for the attention! 😉

 

Announcements
Welcome to the TestComplete Feature Requests board!

Here you can review submitted feature requests and vote up the ones you like! If you can't find the feature you want - go ahead and suggest your own idea. Ideas with the highest rating can be implemented in the product.

Check out the Create a Feature Request guide for more information.
New Here?
Welcome to the Community
Sign Up Here