- 文件系统模块
- PhantomJS ——属性
- PhantomJS ——方法
- 系统模块
- PhantomJS ——属性
- Web 服务器模块
- PhantomJS ——属性
- PhantomJS ——方法
- 其他
- 命令行界面
- PhantomJS ——屏幕捕获
- PhantomJS ——页面自动化
- PhantomJS ——网络监控
- PhantomJS ——测试
- PhantomJS ——REPL
- PhantomJS ——示例
- PhantomJS 有用资源
- PhantomJS ——快速指南
- PhantomJS ——有用资源
- PhantomJS ——讨论
PhantomJS——framesName 属性
它返回一个帧名称数组。
语法
其语法如下:
var wpage = require('webpage').create();
wpage.framesName;
示例
我们举一个例子来理解如何使用 framesName 属性。
var wpage = require('webpage').create();
wpage.open('https:///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 = "https:///tasks/a.html" width = "800" height = "800"
name = "myframe" id = "myframe"></iframe>
<iframe src = "https:///tasks/alert.html" width = "800" height = "800"
name = "myframe1" id = "myframe1"></iframe>
<h1>ddddddddd</h1>
</body>
</html>
上述程序生成如下 输出。
Success myframe,myframe1
phantomjs_webpage_module_properties.htm
广告