PhantomJS framesName 属性用法


发布日期 : 2024-11-30 15:34:51 UTC

访问量: 10 次浏览

PhantomJS framesName 属性

framesName 返回一个框架名称的数组。

语法

它的语法如下所示:

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

示例

让我们举一个示例来了解使用 framesName 属性的用法。

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

ff.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>
<iframe src = "http://localhost/tasks/alert.html" width = "800" height = "800"
name = "myframe1" id = "myframe1"></iframe>
<h1>ddddddddd</h1>
</body>

</html>

上述程序生成以下 输出

Success
myframe,myframe1