mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-04 15:24:23 +01:00
16 lines
295 B
JavaScript
16 lines
295 B
JavaScript
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();
|
|
});
|