gpt4 book ai didi

javascript - 为什么我的 CasperJS 脚本无法登录 Quora?

转载 作者:行者123 更新时间:2023-11-30 12:59:27 27 4
gpt4 key购买 nike

这是我的代码:

var casper = require('casper').create({
verbose: true,
logLevel: 'debug'
});



casper.start('http://www.quora.com', function()
{
this.click('input.submit_button');
this.echo("page loaded");
this.test.assertExists('form.inline_login_form', 'form is found');
this.fill('form.inline_login_form',{email:'xxxxxx@gmail.com',password:'xxxx'},false);

}
);

casper.then(function(){
this.click('input.submit_button');

});

casper.then(function(){

this.capture('google.png', {
top: 0,
left: 0,
width:0,
height:0
});
this.echo("Page Title " + this.getTitle());
});

casper.run();

这是捕获方法生成的图像: enter image description here

为什么不登录?id和密码正确。

最佳答案

试试这个,一定有用:

var casper = require('casper').create({
viewportSize: {
width: 1080,
height: 768
}
});
var email = "xxx@abc.com";
var pass = "********";



casper.start('http://www.quora.com', function()
{
this.click('input.submit_button');
this.echo("page loaded");
this.test.assertExists('form.inline_login_form', 'form is found');
this.fill('form#__w2_b3oUn76_login_form',{email:'email',password:'pass'},true);

});

casper.waitForSelector("form[name=search_form] input[name='search_input']",
function(){
this.capture('google.png');
this.echo("Page Title " + this.getTitle());
});

casper.run();

关于javascript - 为什么我的 CasperJS 脚本无法登录 Quora?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17777328/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com