PhantomJS - onAlert()



当页面上有提示时,将调用此回调。该回调采用一个字符串,不会返回任何内容。

语法

其语法如下:

var wpage = require('webpage').create(); 
wpage.onAlert = function(msg) {}; 

示例

以下示例展示了如何使用 onAlert() 方法。

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

alert.html

<html> 
   <head></head> 
   <body> 
      <script type = "text/javascript"> 
         alert("Welcome to phantomjs"); 
      </script> 
      <h1>This is a test page</h1> 
   </body> 
</html>

上述程序生成了以下 输出

Welcome to phantomjs 
Success 
phantomjs_webpage_module_events_callbacks.htm
广告