PhantomJSから、コンソールではなくログに書き込む方法を教えてください。
例 https://github.com/ariya/phantomjs/wiki/Examples では、常に(私が見たものでは)次のようになります。
console.log('some stuff I wrote');
これはあまり役に立ちません。
だから私はそれを理解しました:
>phantomjs.exe file_to_run.js > my_log.txt
以下は、phantomjsによってコンテンツを直接ファイルに書き込むことができます。
var fs = require('fs');
try {
fs.write("/home/username/sampleFileName.txt", "Message to be written to the file", 'w');
} catch(e) {
console.log(e);
}
phantom.exit();
いくつかの警告または例外が発生した場合、user984003による回答のコマンドは失敗します。一部のコードベースでは常に次のメッセージが表示され、そのファイルにも記録されるため、特定の要件に該当しない場合があります。
Refused to display document because display forbidden by X-Frame-Options.
元のconsole.log関数をオーバーライドできます。これを見てください。
Object.defineProperty(console, "toFile", {
get : function() {
return console.__file__;
},
set : function(val) {
if (!console.__file__ && val) {
console.__log__ = console.log;
console.log = function() {
var fs = require('fs');
var msg = '';
for (var i = 0; i < arguments.length; i++) {
msg += ((i === 0) ? '' : ' ') + arguments[i];
}
if (msg) {
fs.write(console.__file__, msg + '\r\n', 'a');
}
};
}
else if (console.__file__ && !val) {
console.log = console.__log__;
}
console.__file__ = val;
}
});
次に、これを行うことができます:
console.log('this will go to console');
console.toFile = 'test.txt';
console.log('this will go to the test.txt file');
console.toFile = '';
console.log('this will again go to the console');