Hi.
It depends on the webpage, but if there are no elements you can extract the data from directly you can try 2 routes:
1. Extract everything from the Webpage and Parse the resulting data and split it so you get a list of all the URLs that you are looking for.
2. Manually add a UI Element (This can be difficult to get to work in my experience)
If you go down the first route, you can use the action: Get details of web page and extract all Web page text into a Variable.
Then you can extract the text from the variable using Parse text and a Regular Expression to match the URLs.
Assuming all the URLs are the same type and no other comparable URLs exists on the page, the RegEx could look like this:
https:\/\/www\..*\.com\/download\/[0-9,A-Z,a-z]*
Example picture:


This should give you all the matches that are available on the website, but without access to the site or the complete underlying HTML it is difficult to give you any more guidance 🙂