1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-18 07:52:23 +01:00

16 lines
295 B
JavaScript
Raw Normal View History

2016-03-23 18:39:41 +01:00
var page = require('webpage').create();
page.onConsoleMessage = function (message) {
console.log('Page: ', message);
};
page.open('index.html', function (status) {
console.log(status);
if (status === 'success') {
page.render('phantom.png');
}
phantom.exit();
});