How to extract url with uipath studio from a web page

How can I extract the URLs from a web page that has multiple URLs and columns?

As in the image below

@Alex_Marques

Get attribute or get web attribute activity can be used and get the href property

You can use for eqch ui element to get from all
Similar elementz

Cheers

@Alex_Marques,

You can table extraction as well. While indicating the element, just make sure you select the URL as option to extract.

In fact, I use Extract Table Data and I can get the URL, but as you can see in the image, the item that gives me the URL is tabbed, so when I select the first item, the second items in the list do not enter the URL list. Did you understand?

@Alex_Marques,

Add another column for second item and highlight the second item likewise for third one

@ashokkarale
You say to do it like this according to the image

I added two more columns, with the URLs, but it doesn’t help with the solution, because there is a list that has more than 20 items with URLs.

I need it to get all the URLs regardless of the quantity

@Alex_Marques

in table extraction number of items shoudl not matter

also as mentioned above you can use for each ui lement/find children as well as alternatives

cheers

HI @Anil_G

I noticed here that the elements I need to get come from data loaded into a database and made available on the web page.

Example: <a href=“./analysis/XXXXXXX target=”_blank" class=“link_analysis”>

This would be the data I need, but it concatenates data in this ./analysis/Data1/ID creating the href link.

If you have an example to follow

@Alex_Marques

that means its a relative url…add this part to the base of the main site url

cheers