I have a need to be able to download a larger amount of files from a site, keeping the current session to make sure authentication is ok. E.g. I have an authenticated UiPath.Core.Browser object, which I’d like to use for downloading a set of files similar to how it would be done with wget, eg.
https://somesite.com/fileDownload.do?oid=1666801&docTitle=XYZ
https://somesite.com/fileDownload.do?oid=1666802&docTitle=XYZ
https://somesite.com/fileDownload.do?oid=1666803&docTitle=XYZ
https://somesite.com/fileDownload.do?oid=1666804&docTitle=XYZ
etc.
I can use the “Navigate go” activity to open the files and from there let IE use “Save as” and save them, but I had hopes there would be a simpler “from URL → file on filesystem” way (that supports taking an existing browser object.
Anyone has suggestions ? =)