- 文件系统模块
- PhantomJS - 属性
- PhantomJS - 方法
- 系统模块
- PhantomJS - 属性
- Web 服务模块
- PhantomJS - 属性
- PhantomJS - 方法
- 其他
- 命令行界面
- PhantomJS - 屏幕截图
- PhantomJS - 页面自动化
- PhantomJS - 网络监视
- PhantomJS - 测试
- PhantomJS - REPL
- PhantomJS - 示例
- PhantomJS 有用资源
- PhantomJS - 速查指南
- PhantomJS - 有用资源
- PhantomJS - 讨论
PhantomJS - switchToFocusedFrame()
switchToFocusedFrame() 方法选择当前正处于焦点位置的框架。
语法
其语法如下 −
var wpage = require('webpage').create(); wpage.switchToFocusedFrame();
示例
var page = require('webpage').create(); page.open('https://127.0.0.1/tasks/frames.html', function(status) { page.switchToFocusedFrame(); console.log(page.focusedFrameName); });
frames.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://127.0.0.1/tasks/a.html" width = "800" height = "800" name = "myframe" id = "myframe"></iframe> <iframe src = "https://127.0.0.1/tasks/content.html" width = "800" height = "800" name = "myframe1" id = "myframe1"></iframe> <iframe src = "https://127.0.0.1/tasks/click.html" width = "800" height = "800" name = "myframe2" id = "myframe2"></iframe> <h1>Welcome to PhantomJS</h1> </body> </html>
以上程序会生成以下 输出 。
page2
phantomjs_webpage_module_methods.htm
广告