我们正在尝试按照 wdio 的文档安装和使用 wdio 的 PerformanceTotal 服务: https ://webdriver.io/docs/wdio-performancetotal-service/
首先,我安装了 PerformanceTotal 包:
npm install wdio-performancetotal-service --save-dev
然后,我将 PerformanceTotal 服务添加到我们的配置文件中:
["performancetotal",{
disableAppendToExistingFile: false,
performanceResultsFileName: "performance-results",
dropResultsFromFailedTest: false
}]
我创建了一个使用 wdio 文档中给出的示例步骤的功能文件:
Then("should test github startup performance", () => {
// ...
performancetotal.sampleStart("Startup");
browser.url("https://github.com/");
performancetotal.sampleEnd("Startup");
//...
});
但是,在运行测试时,终端中的输出如下:
[0-0]
Performance-Total results:
[0-0] ┌─────────┐
│ (index) │
├─────────┤
└─────────┘
[0-0] PASSED in chrome - C:\Work\features\PerformanceTotal.feature
在 wdio 文档中,它说 PerformanceTotal 应该分析数据,例如:平均时间、平均值的标准误差(sem)、样本数、最小值、最大值、最早时间和最晚时间。
但是,我们的索引是空白的,这是我假设将显示此数据的位置。
我想问一下是否有人成功地使用了 PerformanceTotal 服务,因为除了 wdio 网站之外,我在网上找不到任何文档。我们似乎无法在我们的测试解决方案中启动并运行它,因此我们将不胜感激任何帮助!
谢谢