获取可用的日志类型。有关 WebDriver 中日志类型的更多信息,请参见此处:https://github.com/SeleniumHQ/selenium/wiki/Logging

使用方法

                    .getLogTypes(callback)
                

示例

this.demoTest = function(client) {
  this.getLogTypes(function(typesArray) {
    console.log(typesArray);
  });
};

参数

名称 类型 描述
回调 函数

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

返回值

类型 描述
数组

可用的日志类型

另请参见