Download multiple files from a website

Hi all, I have a trouble on downloading a lists of items. I dont want to click it one by one as there are over 50 items I need to download. Would anyone like to share with me? Thank you!

Capture

1 Like

Hi @raymondhui

Did you try to use Data Scraping wizard to try and scrap the URLs of those items? It is then possible to download a file by using a simple HTTP request, like here:

See also here for more inspiration:

3 Likes

Perfect! I am trying to scrap data but I would like to ask the command in the If condition. How to write the code of parsing the customer name and then comparing to a customer number.

Thank you.

You can extract complete data using data scraping once it is downloaded then you can use for each row and add if condition to filter or use select method to folder out required data.

1 Like

I still have trouble on downloading the pdf. After I tried to open the downloaded pdf it said the file has been damaged.

Also, as the invoice always be uploaded, therefore the url link will be different, how to download the pdf without using url?

Thanks!

You could surface automate your browser:

  1. Navigate to the URL
  2. Save the PDF with a bunch of Click activities
  3. Loop it for all URLs

Hello,

I have multiple websites with log in details provided in an excel from here i input this into browser and log in fields to download files.

is it possible to do this in 1 flow or do i need to create different process flows for each website? since each website has different way to go about to enter in and download files.

Thanks,
Srirana

Hi,

I remember there is a function called dictionaries but I didn’t try before.

Thanks.

Great! thanks Ray, I will do research and work with it.