Page 1 of 1

fetch row count for effective data set

Posted: Tue Mar 26, 2019 12:41 pm
by rsudhak
Hello,

How can I fetch effective data set row count?

I have around 16000 rows in my csv and I am running them in chunks, I trying to write the results by creating a new csv , for which I need to get the count of the effective data set. Any idea as to how this can be done.

Thanks,
rajee

Re: fetch row count for effective data set

Posted: Thu Mar 28, 2019 2:12 pm
by rsudhak
Any idea on this one?

Re: fetch row count for effective data set

Posted: Fri Mar 29, 2019 11:16 am
by qwertzu
hi rsudhak,

You can try this one here:
TestSuite.Current.GetTestContainer("TestCase").DataRange.MaxRange;
This will get an integer of the effective data set from a specific test case.

regards, qwertzu

Re: fetch row count for effective data set

Posted: Tue Apr 02, 2019 11:24 am
by rsudhak
Thank you