browser-launcher2
Version:
Detect, launch and stop browser versions
40 lines (33 loc) • 833 B
JavaScript
/* global phantom */
var webpage = require( 'webpage' ),
currentUrl = phantom.args[ 0 ],
page;
function renderPage( url ) {
page = webpage.create();
page.windowName = 'my-window';
page.settings.webSecurityEnabled = false;
// handle redirects
page.onNavigationRequested = function( url, type, willNavigate, main ) {
if ( main && url != currentUrl ) {
currentUrl = url;
page.close();
renderPage( url );
}
};
// handle logs
page.onConsoleMessage = function( msg ) {
console.log( 'console: ' + msg );
};
page.onError = function( msg, trace ) {
console.log( 'error:', msg );
trace.forEach( function( item ) {
console.log( ' ', item.file, ':', item.line );
} );
};
page.open( url, function( status ) {
if ( status !== 'success' ) {
phantom.exit( 1 );
}
} );
}
renderPage( currentUrl );