I have a GUI that has a table with text and checkboxes data from which I need to extract data with text and checkboxes as the state (like checked or not). I tried Extract Table Data but it’s unable to extract checkboxes state. In this particular scenario, I ask for help from the UiPath experts to kindly help to automate the procedure.
Here in this image, all the data is getting extracted except for the checkboxes. It’s blank for checkboxes.
Initialize a DataTable to store the extracted data.
Define columns: “Text” for text data and “CheckboxState” for checkbox states.
Iterate through the table rows:
a. Extract text data using selectors (replace “textSelector”).
b. Extract checkbox state using selectors (replace “checkboxSelector”).
c. Convert checkbox state string to a boolean.
Add the extracted data (text and checkbox state) to the DataTable.
After extraction, write the DataTable to a file or perform additional processing.
Hi @Firefox
Is the application where you are extracting the data is SAP? if yes then use activity application browser & inside that use Extract Table data. It is working fine & gives Correct results.