- 文件系统模块
- PhantomJS - 属性
- PhantomJS - 方法
- 系统模块
- PhantomJS - 属性
- 网络服务器模块
- PhantomJS - 属性
- PhantomJS - 方法
- 其他
- 命令行界面
- PhantomJS - 屏幕捕获
- PhantomJS - 页面自动化
- PhantomJS - 网络监控
- PhantomJS - 测试
- PhantomJS - REPL
- PhantomJS - 示例
- PhantomJS 实用资源
- PhantomJS - 快速指南
- PhantomJS - 实用资源
- PhantomJS - 讨论
PhantomJS - frameContent 属性
此属性返回活动帧的内容。设置该属性将重新加载此网页的内容。
语法
语法如下所示 −
var page = require('webpage').create();
page.frameContent example;
示例
让我们通过一个示例,来理解 **frameContent** 属性是如何使用的。
var wpage = require('webpage').create();
wpage.open('https:///tasks/content.html', function (status) {
console.log(status);
console.log(wpage.frameContent); // gives the content of the active frame
phantom.exit();
});
上面的程序生成以下 **输出**。
Success
<html>
<head></head>
<body>
<script type = "text/javascript">
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>
<h1>dddddddddd</h1>
</body>
</html>
phantomjs_webpage_module_properties.htm
广告