PhantomJS frameName 属性获取框架名用法


发布日期 : 2021-12-14 02:28:39 UTC

访问量: 9 次浏览

PhantomJS frameName 属性

frameName 返回当前活动帧的名称。

语法

frameName 语法如下 –

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

示例

让我们通过一个示例来理解 frameName 属性的使用。

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

content.html

<html>
<head></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
page2