Phantom JS synchronous AJAX request : NETWORK_ERR: XMLHttpRequest Exception 101

前端 未结 1 1102
长发绾君心
长发绾君心 2020-12-03 13:48

I am making a synchronous ajax call ( ajax settings async: false ). This works well.

Now I\'m trying to write an automated test for this in phantomJS and I\'m gettin

相关标签:
1条回答
  • 2020-12-03 14:19

    Try disabling the web security by using the command-line option --web-security=no when running your script. (phantomjs --web-security=no yourscript.js)

    From the PhantomJS reference (http://phantomjs.org/api/command-line.html):

    "--web-security=[true|false] enables web security and forbids cross-domain XHR (default is true). Also accepted: [yes|no]

    0 讨论(0)
提交回复
热议问题