CasperJS File Download Times Out After 30 Seconds

后端 未结 2 1454
春和景丽
春和景丽 2021-01-03 04:07

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

2条回答
  •  伪装坚强ぢ
    2021-01-03 04:23

    How about adding resourceTimeout:

    pageSettings: {
      webSecurityEnabled: false,
      resourceTimeout: 240000 //240s
    },
    

    This answer says it was added in PhantomJS 1.9, but is not documented yet.

提交回复
热议问题