PhantomJS frameTitle 属性用法:获取活动帧标题


发布日期 : 2020-01-30 15:20:05 UTC

访问量: 10 次浏览

PhantomJS frameTitle 属性

返回活动帧的标题。

语法

其语法如下:

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

示例

让我们以一个示例来理解 frameTitle 属性的使用。

var wpage = require('webpage').create();
wpage.open('http://localhost/tasks/content.html', function (status) {
console.log(status);
console.log(wpage.frameTitle);

// this will give me the title of the page in <title></title>
phantom.exit();
});

content.html

<html>
<head>
<title>welcome to phantomjs</title>
</head>

<body name = "content">
<script type = "text/javascript">
window.name = "page2";
console.log('welcome to cookie example');
document.cookie = "username = Roy; expires = Thu, 22 Dec 2017 12:00:00 UTC";

window.onload = function() {
console.log("page is loaded");
}
</script>

<iframe src = "http://localhost/tasks/a.html" width = "800" height = "800"
name = "myframe" id = "myframe"></iframe>
<h1>dddddddddd</h1>
</body>

</html>

上述程序生成以下输出。

success
welcome to phantomjs