How to extract table with outerline

Hi Team, In Browser have the Table, i need to extract the table with outerline, is it possible to do in UiPath?

image

@Kaviya_V

Follow this workflow:

-Use the “Open Browser” activity to open the web page containing the table.
-Use the “Find Element” activity to locate the table on the web page. You can use selectors to identify the table.
-Once you have identified the table, use the “Get Text” activity to extract the text content of the table. You can specify the table element as the target, and it will retrieve the inner text,
-To extract the table outline you would typically need to use OCR since UiPath doesn’t have a built-in activity for extracting visual styling like borders. You can use the “Screen Scraping” or “Get OCR Text” .

cheers…!

Use the attached browser and use Get text or screen scrapping so data will be extracted.

You need to increment the count in the selector so you can able to extract all the data in the data table.

Try data table extracting before going to the above solution

is any other way to after extracting data from browser, need to add outerline in extracting data? because after getting this data with outerline, need to write in Particular excel cell at excel file.

What do you mean “outerline”? Do you mean the borders? You can’t extract borders, a datatable is just data not formatting. What are you trying to do?

yes outerline means border

This can be done by using the “Add Border” or “Set Range Border” activities from the “Excel” activities package.
You will need to format the data as per your requirements.
After adding borders to the data, use the “Write Cell” activity from the “Excel” activities package to write the formatted data to a particular cell in an Excel file. Specify the cell reference and the data you want to write.

You can’t extract a border. A datatable just has data, no formatting.

Hi ,

It is not possible to get border, if you want you can try get attribute in order to get border properties

Thank u for all your answer. now i can understand.