page.set ('contenido') no funciona con contenido dinámico en phantomjs

Intenté usar phantomjs para capturar mi página con la pantallanodo-fantasma puente. Esto es lo que estoy intentando:

 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();
                  });
                });
            });
          });

Eso funciona bien, pero si intento establecer contenido que contenga javascript, no funcionará. Por favor ayúdame, ¿por qué no funciona?

EDITAR: Esto no funciona:

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);   
    });         
  });

Respuestas a la pregunta(3)

Su respuesta a la pregunta