Phantomjs提交并下载cpf

时间:2016-07-15 13:54:32

标签: pdf download phantomjs submit

我想用我的cpf提交并下载pdf。 这是代码,但不起作用。

var page = require('网页')。create(); page.open(" http://www.samaetga.com.br/portal/SegundaVia.aspx",function(status){

if(status ===" success"){

 console.log("sucesso");
};
page.render("page.png");
   page.evaluate(function() {
    document.getElementById("cpf").value = "00000000000";
   document.getElementById("u_0_1").click();

});
  setTimeout(function() {
   page.evaluate(function() {
    console.log('vou printar');
  });
  page.render("page.png");
 phantom.exit();
});

};

0 个答案:

没有答案