I am trying to download a folder from our university system with python where the link is created on click.
<li onclick="return il.BgTask.init('ilFolderDownloadBackgroundTaskHandler', 1607834);;">
<a id="act_1607834_pref_1576848_" href="#"><span class="xsmall">Download</span></a>
</li>
As far as I understand it there is some JS performing onclick which is generating the download link. I tried to find a GET Request in the Network tab to see what happens but without success. It seems like that when I click on "Download Folder" the folder first gets zipped serverside and then served as a download to me.
Is there any workaround or solution for this to get the exact download link or to perform the required actions to create one and get it in python?