从 Selenium 获取日志。

用法

                    .getLog([typeString], [callback])
                

示例

this.demoTest = function(client) {
  this.getLog('browser', function(logEntriesArray) {
    console.log('Log length: ' + logEntriesArray.length);
    logEntriesArray.forEach(function(log) {
       console.log('[' + log.level + '] ' + log.timestamp + ' : ' + log.message);
     });
  });
};

参数

名称 类型 描述
typeString string | function

要请求的日志类型

回调 function

使用结果值调用的回调函数。

另请参阅