- 文件系统模块
- PhantomJS - 属性
- PhantomJS - 方法
- 系统模块
- PhantomJS - 属性
- Web 服务器模块
- PhantomJS - 属性
- PhantomJS - 方法
- 杂项
- 命令行界面
- PhantomJS - 屏幕截图
- PhantomJS - 页面自动化
- PhantomJS - 网络监视
- PhantomJS - 测试
- PhantomJS - REPL
- PhantomJS - 示例
- PhantomJS 有用资源
- PhantomJS - 快速指南
- PhantomJS - 有用资源
- PhantomJS - 讨论
PhantomJS - framePlainText 属性
该属性提供当前活动框架的内容,但只有不带任何 HTML 标记的内容。
语法
它的语法如下所示 −
var wpage = require('webpage').create();
wpage.framePlainText;
示例
让我们举一个例子来理解 framePlainText 属性的使用。
var wpage = require('webpage').create();
wpage.open('https:///tasks/content.html', function (status) {
console.log(status);
console.log(wpage.framePlainText);
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 = "https:///tasks/a.html" width = "800" height = "800"
name = "myframe" id = "myframe"></iframe>
<h1>dddddddddd</h1>
</body>
</html>
它会产生以下 输出。
success dddddddddd
phantomjs_webpage_module_properties.htm
广告