bogdanrada
7/6/2017 - 7:08 AM

https://skookum.com/dynamic-screenshots-on-the-server-with-phantomjs/ - shotty2.js

var page = new WebPage();

page.open('http://espn.go.com/nfl/', function (status) {
	//once page loaded, include jQuery from cdn
	page.includeJs("http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js", function() {
		//once jQuery loaded, run some code
		//inserts our custom text into the page 
		page.evaluate(function(){$("h2").html('Many NFL Players Scared that Chad Moon Will Enter League');});
		//take screenshot and exit
		page.render('espn.png');
		phantom.exit();   	
		  
	});
 
});