次のコードを使用すると、 Twitter.comが無効になっているため(空の関数)、文字列casper.js
が出力されません。This is thenEvaluate
console.log
var casper = require('casper').create({
verbose: false,
logLevel: 'debug'
});
casper.start("http://twitter.com");
casper.on('remote.message', function(msg) {
this.echo('remote message caught: ' + msg);
})
casper.thenEvaluate(function() {
console.log('This is thenEvaluate');
});
casper.run();
URLをgoogle.comまたは他のWebサイトに交換すると、機能します。私の質問は:
無効になっているWebサイトの場合、再度有効
console.log
にする方法はありますか?evaluate()
#1がNOの場合、またはthenEvaluate()
関数内で何らかのログを実行する方法はありますか?
ありがとう。