So here's the deal:
I am accessing some webpage(using HtmlUnit) on which there's a button. I programatically click that button(big thanks to Mads Hansen)
List l = page.getByXPath( "//input[@type='submit' and @value='Save as XML']" );
((HtmlSubmitInput)l.get(0)).click();
The button has an onclick event, following:
onclick="document.forms[0].action="calcSaveXML_BG#POS";document.forms[0].submit()"
When I click that button normally through the browser, I am given the chance to save a xml file on my hard drive.
The thing is, I want to be able to get that xml file programatically. Can this be done?