这是我的casperjs脚本,下面一切正常,我只需要重定向后的帮助
var casper = require('casper').create ({
waitTimeout: 15000,
stepTimeout: 15000,
verbose: true,
viewportSize: {
width: 1280,
height: 960
},
pageSettings: {
"userAgent": 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.10 (KHTML, like Gecko) Chrome/23.0.1262.0 Safari/537.10',
"webSecurityEnabled": false,
"ignoreSslErrors": true
},
onWaitTimeout: function() {
// casper.capture('./out/wait-timeout:_' + TimeTidy() + '.png');
// throw newItem Error stuff;
},
onStepTimeout: function() {
// casper.capture('./out/step-timeout' + TimeTidy() + '.png');
// throw newItem Error stuff;
}
});
// Vars
var fs = require('fs');
var url = 'https://www.bt.com/wifi/secure/index.do?s_cid=con_FURL_btwifi';
// Start
casper.start();
casper.thenOpen(url, function() {
// this.echo(this.getTitle());
casper.click("a[href='http://www.bt.com/wifi/secure/status.do']");
this.echo(this.getCurrentUrl());
});
// Wait 2 sec then write to txt file
casper.wait(9000, function() {
this.echo(this.getHTML());
this.echo(this.getCurrentUrl());
});
// Executes
casper.run();
我怎样才能访问最后一个
this.echo(this.getCurrentUrl());
并填写表格,如果任何人可以帮我将这个功能添加到我的表格我会很高兴
答案 0 :(得分:0)
我不确定真正理解你想做什么。
Capser应该遵循重定向,所以无所事事。
要填写表单,只需添加一个像这样的新步骤
casper.then(function () {
casper.fill('form[name=LoginForm]', {
'username':'YOURUSERNAME',
'password':'YOURPASSWORD'
}, true);
});