0
我想運行一個基本的casperjs腳本,登錄到一個網站,然後顯示我的鏈接。但是我的輸出不會返回任何其他然後'Done'
我的鏈接在哪裏?
這裏是我的代碼
var casper = require('casper').create();
casper.start('http://xxxxxx/Login.aspx', function(){
//Login
this.fill('form#form1', {
'username': 'xxxxx',
'password': 'xxxxx'
}, true);
});
casper.then(function(){
var links = document.getElementsByTagName('a');
for(var i = 0; i < links.length; ++i) {
//These should show something
this.echo(links[i].innerText;
this.echo(this.getHTML());
}
});
casper.run(function(){
this.echo('done').exit();
});
就像我說的,我回來的僅僅是「完成」。