我用PhantomJS登录facebook。这是我的代码:
var page = require('webpage').create();
phantom.cookiesEnabled = true;
page.open("http://www.facebook.com/login.php", function(status) {
if (status === "success") {
page.evaluate(function() {
document.getElementById("email").value = "email";
document.getElementById("pass").value = "pass";
document.getElementById("loginbutton").click();
});
window.setTimeout(function() {
page.render("page.png");
phantom.exit();
}, 5000);
}
});
page.open("https://www.facebook.com/myprofil", function(status) {
window.setTimeout(function() {
page.render("profil.png");
phantom.exit();
}, 5000);
});
到目前为止,登录过程非常顺利,但我没有找到正确的方法来访问我的个人资料网址,例如在同一个会话中。我尝试再次使用page.open,但我一直在获取我请求的页面的登录表单,好像我以前从未登录过。在会话中导航的正确方法是什么?
答案 0 :(得分:4)
page.open
是一个异步函数。打开一个页面需要一些时间。完成后,将调用回调。如果你连续两次调用page.open
而没有等待第一个调用完成,你基本上会覆盖第一个请求,所以只会执行第二个请求。
您需要嵌套调用:
page.open("http://www.facebook.com/login.php", function(status) {
if (status === "success") {
page.evaluate(function() {
document.getElementById("email").value = "email";
document.getElementById("pass").value = "pass";
document.getElementById("loginbutton").click();
});
window.setTimeout(function() {
page.render("page.png");
page.open("https://www.facebook.com/myprofil", function(status) {
window.setTimeout(function() {
page.render("profil.png");
phantom.exit();
}, 5000);
});
}, 5000);
}
});
请记住,只要调用phantom.exit()
,PhantomJS就会退出。所以当你的脚本应该结束时你应该有一个phantom.exit()
。