Hi,
See my screenshot, every month i need to go this website to download the invoice.
What activities can i use to download the bills according to month from the website and save it to a specific folder? i.e now is May, so i want to bot to only download May invoice.
Use datascrapping to scrap the tables [ along with link present under Download Account], then do the datatable manipulation on scrapped datatable to get the invoice for a particular month and download it
Use selector method,
use anchor base activity [ using dynamic selector for getting Bill date according to month] to click the Download PDF URL.
The way I usually do things like this is to use Get Children (as descendants) of that last column, then loop and click each one. Depending upon which browser you’re using and how you have the settings for downloads, you’ll either get a Save As popup you can use to put the file where you want, or it’ll go into your local Downloads folder and then you can move it to where you want it.