I\'m using CasperJS to download a 15 MB file. In the browser, the download takes about 3 minutes to complete. With Casper, the .download function for the same
.download
How about adding resourceTimeout:
resourceTimeout
pageSettings: { webSecurityEnabled: false, resourceTimeout: 240000 //240s },
This answer says it was added in PhantomJS 1.9, but is not documented yet.