1

我的 phantom Js 代码有问题,如下所示,我有代码来测试我的朋友 Web 服务器(使用节点 Js 制作)。实际上,它看起来简单而完美地运行。

var page = require('webpage').create();

var address   = "http://localhost:3333";

// Route "console.log()" calls from within the Page context to the 
// main Phantom context (i.e. current "this")
page.onConsoleMessage = function(msg) {
  console.log("Console.log: ", msg);
};

page.onAlert = function(msg) {
  console.log("Alert:", msg);
};

page.open(address, function (s) {
    page.evaluate(function () {
  function click(el){
      var ev = document.createEvent("MouseEvent");
      ev.initMouseEvent(
      "click",
      true /* bubble */,
      true /* cancelable */,
      window, null,
      0, 0, 0, 0, /* coordinates */
      false, false, false, false, /* modifier keys */
      0 /*left*/, null
      );
      el.dispatchEvent(ev);
  }
  document.getElementById('username').value = 'MyName';
  document.getElementById('password').value = 'MyWord';
  click(document.querySelector('input[type=submit]'));
    });

    page.onNavigationRequested = function() {
  // console.log("Moved", JSON.stringify(arguments))
  // to check whether send or not
  page.render("printscreen" + ".png");
    };

    setTimeout(function(){
  page.render("nextprintscreen" + ".png");
        phantom.exit();
    }, 3000);
});

当我声明
var userName = 'MyName';
var passWord = 'MyWord';
然后将其放在下面
var address = "http://localhost:3333";

document.getElementById('username').value = 'MyName';
document.getElementById('password').value = 'MyWord';

document.getElementById('username').value = userName;
document.getElementById('password').value = passWord;

invalid username or password从我的朋友网络服务器返回。你能帮我弄清楚它为什么会发生。这是我的第一个“javascript 世界”代码。

我已经阅读了这个问题另一个变体,然后是一个建议

但这只是让我更加困惑。

谢谢,
艾哈迈德

4

1 回答 1

1

问题是它page.evaluate()是沙盒的,因此无法访问您的幻影脚本的变量。

从 PhantomJS 1.6 开始,可以将 JSON 序列化参数传递给page.evaluate(). 评估函数的参数和返回值必须是一个简单的原始对象。但是,可以通过 JSON 序列化对象。

您可以将代码更改为:

page.evaluate(function (login, pwd) {
     ...
     document.getElementById('username').value = login;
     document.getElementById('password').value = pwd;
     ...
}, userName , passWord );
于 2013-07-02T11:36:51.647 回答