PhantomJS title属性
该属性返回您正在阅读的页面的标题。
语法
其语法如下 –
var wpage = require('webpage').create();
wpage.title;
示例
以下示例演示了对 title 属性的使用。
var wpage = require('webpage').create();
wpage.open('http://localhost/tasks/ptitle.html', function (status) {
console.log(wpage.title);
phantom.exit();
});
上述程序生成以下 输出 。
Testing PhantomJs