PhantomJS - Pages 属性



**Pages** 属性将为您提供一个在页面中使用 window.open 打开的页面数组。如果您所引用的 URL 中的页面已关闭,则不会考虑此页面。

语法

其语法如下 −

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

示例

让我们举个例子来理解 **page** 属性的使用。

var wpage = require('webpage').create(); 
wpage.open('https://127.0.0.1/tasks/ptitle.html', function (status) {  
   console.log(wpage.pages); 
   phantom.exit(); 
});

ptitle.html

<html> 
   <head> 
      <title>Testing PhantomJs</title> 
   </head> 
   
   <body> 
      <script type = "text/javascript"> 
         window.onload = function() { 
            window.open("https://127.0.0.1/tasks/a.html","page1"); 
            window.open("https://127.0.0.1/tasks/content.html", "page2"); 
         } 
      </script>  
      <h1>This is a test page</h1> 
   </body>
   
</html>

以上程序会生成以下 **输出**。

WebPage(name = "WebPage"),WebPage(name = "WebPage")

我们在上面的示例中引用的网页,即 **ptitle.html** 有两个 window.open 命令。输出显示了来自 **wpage.pages** 的页面数组。

phantomjs_webpage_module_properties.htm
广告