Phantomjs-title-property

提供:Dev Guides
2020年6月23日 (火) 08:11時点におけるMaintenance script (トーク | 投稿記録)による版 (Imported from text file)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先:案内検索

PhantomJS-titleプロパティ

このプロパティは、あなたが読んでいるページのタイトルを返します。

構文

その構文は次のとおりです-

var wpage = require('webpage').create();
wpage.title;

次の例は、 title プロパティの使用を示しています。

var wpage = require('webpage').create();
wpage.open('http://localhost/tasks/ptitlel', function (status) {
   console.log(wpage.title);
   phantom.exit();
});

上記のプログラムは、次の output を生成します。

Testing PhantomJs