Copied from here:
I need to save files from websites using HtmlUnit. I am currently navigating to pages that have several anchors that use javascript:
onClick()="DownloadAttachment('attachmentId')"
So far though I've been unable to find resources or examples that show how to save files using HtmlUnit. I've been trying mainly to get AttachmentHandler to work for this as it seems the most likely to work, but have been unsuccessful.
How do I use AttachmentHandler to get at the data stream which the browser would see if I clicked on the link?