Skip to content
This repository has been archived by the owner on Jun 19, 2020. It is now read-only.

Latest commit

 

History

History
36 lines (22 loc) · 1.33 KB

known_issues.rst

File metadata and controls

36 lines (22 loc) · 1.33 KB

Known Issues

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: