mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
18 lines
392 B
JavaScript
18 lines
392 B
JavaScript
"use strict";
|
|
function helloWorld() {
|
|
console.log(phantom.outputEncoding + ": こんにちは、世界!");
|
|
}
|
|
|
|
console.log("Using default encoding...");
|
|
helloWorld();
|
|
|
|
console.log("\nUsing other encodings...");
|
|
|
|
var encodings = ["euc-jp", "sjis", "utf8", "System"];
|
|
for (var i = 0; i < encodings.length; i++) {
|
|
phantom.outputEncoding = encodings[i];
|
|
helloWorld();
|
|
}
|
|
|
|
phantom.exit()
|