Unable to fetch all the data from the table in Java Client Application, Since there is no specific Row and Column index in the selector, The window has only cell index which appears regardless there is a data in the grid or not.
Welcome to uipath community
is the column or column name or any of the cell in the table is accessible as element…
if its accessible we can use data scrapping option from design menu
or if its looking as a image, use Screen scrapping option from same design menu
That would work for sure
and also make sure that java extension is installed https://studio.uipath.com/docs/installing-the-java-extensions
Kindly try this and let know for any queries or clarification
Cheers @ShreeJnanesh
Fine then use screen scrapping as suggested before and in that use Full text or OCR text to get the details, in a unstructured form, get the output with a variable of type string
–then use generate datatable activity and pass the above variable as input and get the output as datatable
–now we can use this datatable wherever we want
Cheers @ShreeJnanesh
The visible part of the grid is only 8 columns out of 14, and only 10 rows. There is data outside the visibility area, so those data won’t get extracted.
Is there any methods to extract all those data, by looping through attributes.
The way I thought to process is grouping
(Final cell no-Initial cell no)/No of columns gives the no of row items. Then, put it to a DataTable, but if the data exceeds the no of rows i:e 10 it won’t extract the remaining data.
Hi All,
Since there were no Reliable selectors in the application and no specific activity to extract the data table from the java application, I did manage to find a solution.
The solution for this table extraction is,
Since there were each cell index and 12 rows, Using Get Text activity to copy the data, Send hotkey activity to scroll down and add the extracted values to the created data table with their specific column.