我的 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 世界”代码。
但这只是让我更加困惑。
谢谢,
艾哈迈德