I am trying to download all files from a webpage using perl. The problem is that the downloads are 'hidden' behind folders that open when you click the little "plus" symbol. I can go through one by one and open each file, download the contents, go back, open the next one, etc. I am wondering if there is an elegant way to do this using WWW::Mechanize or LWP::UserAgent where I just open every folder in one fell swoop and then collect all the download links?
The HTML I am intersted in looks as follows:
<td width='0' nowrap><a href="...link" onmouseover="window.status='Close the folder Homework #2.'; return true;" ONMOUSEOUT="window.status='';return true;">
If I click on that link while viewing the source, a new page opens showing all the folders withe the said folder opened. Now I can view the source, pull out the file with mirror(), OK great.
BUT there has to be a more elegant way than doing this for each one right? and just open them all?
A similar question that I can foresee coming up is how do I know from the HTML tags that this is a button to click to open a folder? (somewhat relevant especially if it turns out that I have to loop through to check each considering that there are other links on the page)
My apologies in advance as I am still learning perl and I have 0 HTML experience. Let me know if you all need more of the HTML or some screenshots to make my question more clear.
Thanks to all who take their time to look!