I’m attempting to download multiple files from a system.
So, as you can see in the screenshot, I click on the view button, then I download on the page that follows, but I have to return to the page and then click on the next item.
Until the very last item.
For Returning to the Previous Page, You could use Go Back Activity if you use Classic Experience else In Modern Design you will be able to find Navigate Browser Activity, which contains the Option to go back to the Previous Page.
For Clicking on the Next View Button, we would require to know if Data Scraping/Table Extraction of the Table containing the view buttons is possible. Also we would require to Check the Selector of the View Button for identifying an attribute that would help us identify the row number.
Please inspect on any of the 2 view buttons and see whether you are able to find some rownumber, idx or some other attribute which differentiate both those View button. if you are able to find it, then you can use a While loop along with the combination of Element exists and Click activities can complete your requirement.
My issue is with implementing the extraction of data for multiple clients because I succeeded for one.
And am not using Data Scraping because that’s not where my interest lies scrapping the data doesn’t download the desired PDF file
The unique ID will not helpful here. There should be something which determines the order. Like First view button is having rownum=1, Second view button is having rownum=2 etc…
Please share the screenshot of the UI explorer here.
I finally hacked the problem by using data scraping where I only extracted the URL from the view button since it was unique for every view button them I looped through all of them using a for each