Phantomjs-frameurl-property

提供:Dev Guides
移動先:案内検索

PhantomJS-frameUrlプロパティ

このプロパティは、現在フォーカスされているフレームのURLを返します。

構文

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

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

*frameUrl* プロパティの使用を理解するために例を見てみましょう。
var wpage = require('webpage').create();
wpage.open('http://localhost/tasks/contentl', function (status) {
   console.log(status);
   console.log(wpage.frameUrl);
   phantom.exit();
});

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

success
http://localhost/tasks/contentl