Phantomjs-windowname-property

提供:Dev Guides
移動先:案内検索

PhantomJS-windowNameプロパティ

このプロパティは、ウィンドウの名前を返します。

構文

その構文は次のとおりです-

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

*windowName* プロパティの使用を理解するために例を見てみましょう。
var wpage = require('webpage').create();
wpage.open('http://localhost/tasks/ffl', function (status) {
   console.log(status);
   console.log(wpage.windowName);
   phantom.exit();
});

ffl

<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 = "http://localhost/tasks/al" width = "800" height = "800"
         name = "myframe" id = "myframe"></iframe>
      <iframe src = "http://localhost/tasks/alertl" width = "800" height = "800"
         name = "myframe1" id = "myframe1"></iframe>
      <h1>dddddddddd</h1>
   </body>

</html>

上記のプログラムは、次の output を生成します。

success
page2