I have a extracted data table which extracts data from 9 pages. I want to get maximum pages count. Please help anyone?
From which application are you extracting the datatable
We can get the rows count of the extracted datatable.
Datatable.Rows.count.toString which gives the row count of the datatable.
But we cannot get the pages count.
Hope it helps!!
Yes got the row count. Scenario is if data table matches specific string value then fetching row index, then it has to click that particular page click matched button & take screenshot.
After extracted the table and stored in a datatable. we can’t get the page count. It’s impossible. @vnsatyasunil
ok will try another way. Thanks
DT1.AsEnumerable.ToList.FindIndex(Function(r) r(“ColumnName”).equals(“YourRequiredvalue”)))
this gives you the index of matched column
I am getting index. Problem is in 1st page one matched row value is there in third page 2 are there in 9th page 3 are there. if matches it has to click matched row value button and take screenshot
Then you need to make use of two activities one for clicking on the page
second one for click on the matched row
try this or share a sample image of it, i will help you
Page count means you want to extract the number of pages that you extracting data?
yes the number of pages in we are extracting data
If that’s what you’re trying to do, then you should use For Each UI Element, not Table Extraction.