a simple html page,
<body>
<form method="POST" action="abc">
<input ... />
</form>
</body>
submit the form with javascript
document.getElementsByTagName('form')[0].submit()
The request was indeed submitted (the server return a file as download), but I could not find any activity in network tab.
any idea? thanks in advance.