以下是我登录表单的html
<div class="login_area_user">
<form method="post" action="https://www.tradus.com/login?dest_url=https://www.tradus.com/cart/select-address" id="user-login">
<input type="hidden" value="1" name="form_submit">
<h3 style="display:inline-block;">Already a Member</h3>
<p id="login-main-center-right-descp">You can use tradus login id and password</p>
<div class="login-row">
<label class="colorBlack">Email / Login*</label>
<input class="login-field" type="text" name="name" id="edit-namepopup">
</div> <!-- [/login-row] -->
<div class="login-row">
<label>Password</label>
<input class="login-field" type="password" id="edit-passpopup" name="pass">
</div> <!-- [/login-row] -->
<div class="login-row">
<a class="forgotPassword" href="/forgot_password">Forgot your password?</a>
<!--input type="checkbox" name="remember" /><span>Remember me</span-->
</div>
<div class="login-row">
<input class="login-button" value="Login" type="submit">
</div>
<input type="hidden" name="op" value="Log in">
</form>
</div>
使用以下代码登录:
this.fill('form#user-login', {
'form_submit': 1,
'name': 'abc@gmail.com',
'pass': 'pwd',
'op': 'Log in'
}, true);
但我不认为它会为我做这件事。
答案 0 :(得分:19)
casper.waitForSelector("form input[name='name']", function() {
this.fillSelectors('form#user-login', {
'input[name = name ]' : 'abc@gmail.com',
'input[name = pass ]' : 'pwd'
}, true);
});
只需使用此功能(请参阅waitForSelector docs)。 首先,等待表单加载。 然后使用选择器填充表单。
答案 1 :(得分:10)
casper.waitForSelector('form', function(){
this.fill('form', {
'name': 'abc@gmail.com',
'pass': 'pwd'}, true);
});
<!-- wait until a form tag disappears -->
casper.waitWhileSelector('form', function(){
this.echo('selector is no more!');
});
casper.then(function(){
this.echo(this.getTitle());
});
答案 2 :(得分:3)
如果其他人发现这个..我使用了这些答案的一些组合 - 我的登录表单也在iframe中增加了一些难度,但基本上我看到的问题(基于cookie的登录)是casper将要去服务器响应并设置cookie之前的下一步。我添加了一些.wait()回调以确保有足够的时间来获取该cookie。它可能不是万无一失的,但我还没有问题
请注意,cookie需要设置每个CRAWL
casper.start(config.loginUrl, function() {
console.log("Checking login status @ " + config.loginUrl);
// set a wait condition to make sure the page is loaded (particularly iframe in my case)
this.wait(5000,function(){
// switch to iframe (won't be necessary for most)
this.page.switchToChildFrame('login');
// fill out the form
this.fillSelectors("form[name='loginForm']",{
'input#txtUsername' : config.username,
'input#txtPassword' : config.password
});
// click the login button
console.log("Logging In...")
this.click('input.button.login');
// ** give my crappy dev server 5 seconds to respond
this.wait(5000,function(){
console.log('Starting to spider ' + dataObj.start)
// do yo dance
spider(dataObj.start);
});
答案 3 :(得分:1)
嗯..跟着它:
casper.then(function () {
this.evaluate(function () {
$('form#user-login').submit();
});
});