page.set ('content') не работает с динамическим контентом в phantomjs

Я пытался использовать фантомы для захвата экрана моей страницы сУзел-фантом мост. Вот что я пытаюсь:

 var phantom = require('node-phantom');

 phantom.create(function (err, ph) {
            return ph.createPage(function (err, page) {
              return page.set('content', '<html><head></head><body><p>Hello</p></body></html>', function (err, status) {
                  return page.render('./content.png', function (err) {
                    ph.exit();
                  });
                });
            });
          });

Это хорошо работает, но если я пытаюсь установить контент, который содержит JavaScript, это не работает. Пожалуйста, помогите мне, почему это не работает?

РЕДАКТИРОВАТЬ: Это не работает:

var phantom = require('node-phantom');

phantom.create(function (err, ph) {
   return ph.createPage(function (err, page) {
      page.open("about:blank", function(err,status) {
         page.evaluate(function() {        
            document.write('<html><head></head><body><script src="http://code.jquery.com/jquery-1.9.1.min.js"></script><script>$(function(){document.write("Hello from jQuery")})</script></body>');
         });

         setTimeout(function () {
            return page.render('./content.png', function (err) {
                ph.exit();
             }); 
         }, 5000);   
    });         
  });

Ответы на вопрос(3)

Ваш ответ на вопрос