I can view test scripts running in casperjs in a browser for easy tracking

Hi, I am using jquery and Ajax as the front end in my web application, so I am working on automation of the test environment using casperjs. due to the use of jquery - ajax, I can not track the application whether the page is loaded or not, and many other events. so during development I’m going to view the actions in the browser, not in text mode.

Is it possible to view test scripts that run through browser actions?

+8
javascript casperjs
source share
1 answer

Yes, use the slimerJS engine (gecko → firefox) in casper: http://slimerjs.org/ It opens firefox and you will see your automated tests in the browser.

This answer may interest you: Is there a way to go into CasperJS code and debug step by step

+4
source share

All Articles