Known Issues

This is a non-exhaustive list of issues that the CasperJS team is aware of and tracking.

PhantomJS

Versions below 2.0.0:

  • phantomjs-issue-10795:

    There is a known issue while doing clicks within the page that causes execution to halt. It has been fixed in v2.0.0+ in phantomjs.

    It is mentioned in the following issues: #233

console.log('START click');
console.log(document.getElementById('foo').toString());
console.log(document.getElementById('foo').click()); // this ends execution
console.log('END click'); // this never gets called

Version 2.0.0:

  • phantomjs-issue-12506:

    Webpage.uploadFile is not working. It has been fixed in v2.0.1+ in phantomjs.

  • phantomjs-issue-12410:

    Quote from PhantomJS 2.0 Release Note:

    “PhantomJS 2 can not run scripts written in CoffeeScript anymore (see issue 12410). As a workaround, CoffeeScript users can still compile their scripts to JavaScript first before executing it with PhantomJS.”