2013-05-27 02:29:40 +04:00
|
|
|
casper
|
2013-08-04 23:47:17 +04:00
|
|
|
.start(casper.cli.get('baseUrl')+"?debug")
|
2013-08-04 23:20:25 +04:00
|
|
|
.then(function () {
|
2013-08-11 22:09:43 +04:00
|
|
|
this.wait(casper.cli.get('delay'));
|
2013-08-04 23:47:17 +04:00
|
|
|
})
|
|
|
|
.then(function () {
|
|
|
|
this.echo(casper.cli.get('baseUrl')+"?debug");
|
2013-08-11 12:45:56 +04:00
|
|
|
// If there was a JS error after the page load, casper won't perform asserts
|
2013-08-04 23:20:25 +04:00
|
|
|
this.test.assertExists('html', 'Casper JS cannot assert DOM elements. A JS error has probably occured.');
|
|
|
|
|
|
|
|
this.test.assertExists('#drawing-canvas-container canvas', 'Check if drawing canvas element is created');
|
|
|
|
})
|
|
|
|
.run(function () {
|
|
|
|
this.test.done();
|
2013-08-11 12:45:56 +04:00
|
|
|
});
|