我正在使用此代碼登錄窗體。我得到錯誤。casperjs登錄表單錯誤
var casper = require('casper').create();
var url = "www.example.com";
casper.start(url,function(){
this.echo(this.getTitle());
});
casper.waitForResource(url,function() {
this.fillSelectors("form[method='post']", {
'input[name="userName"]' : 'usr1',
'input[name="password"]': 'pswed1'
}, true);
});
casper.run();
我幾乎複製的例子,我在棧上找到,但我仍然得到錯誤...怎樣做才能解決這個問題?
它告訴你它找不到形式... – mfreitas
我得到了,但我試過一遍又一遍......沒有理由...... – macroscripts
你確定你是正確的網頁上?你有截圖檢查('casper.capture()')?請註冊到'resource.error','page.error','remote.message'和'casper.page.onResourceTimeout'事件([Example](https://gist.github.com/artjomb/4cf43d16ce50d8674fdf)) 。也許有錯誤。 –