从浏览器获取性能指标。指标收集仅在调用 enablePerformanceMetrics() 命令后开始。

用法

                    .getPerformanceMetrics(callback)
                

示例

 describe('collect performance metrics', function() {
   it('enables the metrics collection, does some stuff and collects the metrics', function() {
     browser
       .enablePerformanceMetrics()
       .navigateTo('https://www.google.com')
       .getPerformanceMetrics((result) => {
         if (result.status === 0) {
           const metrics = result.value;
           console.log(metrics);
         }
       });
   });
 });

参数

名称 类型 描述
回调 函数

包含性能指标作为参数的对象的回调函数。

返回

类型 描述
Promise<object>

在上次调用 enablePerformanceMetrics() 命令和此命令之间收集的指标。