how to count the number of rows fetched in data source
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
how to count the number of rows fetched in data source
Hi,
Is it possible to count the number of datas fetched in a data source in readyapi? Can it be stored in a variable to use in the next steps.
Thanks!
Solved! Go to Solution.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @MKV
Try below code:
DSrowCount = testRunner.testCase.testSteps["DataSource"].rowCount log.info DSrowCount
Do Like/Accept it as Solution if it solves your query.
Thanks,
Himanshu Tayal
Click "Accept as Solution" if my answer has helped,
Remember to give "Kudos" 🙂 ↓↓↓↓↓
Thanks and Regards,
Himanshu Tayal
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks..It worked !!
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The problem is that the rowCount does not return the actual row count, in my case 200. I have to run my data source step manually first to create the rows and then rowCount will return the actual row count. When I try to automate this and I try to use:
def tst = testRunner.runTestStepByName("myDataSource")
DSrowCount = testRunner.testCase.testSteps["myDataSource"].rowCount
log.info DSrowCount
it does not work. There are 200 rows in the datasource but the rowCount returns 1. Is there any way to make the rowCount return 200 instead of 1?
Thanks
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Would you mind opening a fresh thread (the previous one was already closed ) with more details of the issue such as what steps does the test case has? Where do you need that row count? What type of data source are you using?
Regards,
Rao.
