送信ボタンをクリックし、次のページが読み込まれるのを待ってから、その2番目のページでhtmlを取得したいと思います。開始してから実行しますが、その後のステップは最初のページで実行されます。何か案は?
var casper = require('casper').create();
var site = 'http://www.example.com';
var data = {};
casper.start(site, function() {
this.evaluate(function() {
$('input[type="submit"]:first').click();
});
});
casper.then(function() {
data.body = this.evaluate(function() {
var rows = $('#content table:first tbody tr');
var listings = rows.eq(3).text();
var count = rows.eq(4).text();
return {
listings: listings,
count: count
};
});
});
casper.run(function() {
this.echo(data.body.listings);
this.exit();
});
これで問題は部分的にしか解決されませんが、waitForを使用して2ページ目に到達したことを確認できます。例えば:
this.waitFor(function check() {
return (this.getCurrentUrl() === PAGE_2_URL);
},
function then() { // step to execute when check() is ok
this.echo('Navigated to page 2', 'INFO');
},
function timeout() { // step to execute if check has failed
this.echo('Failed to navigate to page 2', 'ERROR');
});
WaitForResourceを使用して、ページの読み込みが完了するのを待つことをお勧めします。こちらのドキュメントを参照してください documentation
例:
casper.waitForResource(function checkAuth(validcredentials) {
return validcredentials;
}, function onReceived() {
if (authTitle !== this.getTitle()) {
this.log('Autenticação realizada com sucesso, aguarde...');
} else {
// this.capture('pic3.png');
this.log('Usuario ou senha invalidos!', 'ERROR');
this.die('User or password invalids!', 1); }
});
ダブルクリックでも同様の問題があります。クリックイベントが実際に発生することを確認してください。これが同じコンテンツ内で次のステップを実行する原因だと思います。