var webPage = require('webpage');
var page = webPage.create();
page.open('https://example.ru/', function (status) {
window.setTimeout( function() {
var content = page.content ;
/* Парсите полученный html код динамического сайта */
fs.write("./info.log",'Время: ' + new Date().toLocaleString()+' | Value:'+ content +'\n' , 'a');
phantom.exit();
}, 10000);
});