如何测量黄瓜步骤的执行时间
我正在寻找一种方法来测量黄瓜步骤的执行时间。使用 junit 格式,我设法获得了一些有关功能和场景执行时间的数据,但我还想查看场景内步骤的时间。
I'm looking for a way to measure the execution time of my cucumber steps. Using the junit
format I managed to get some data about the execution time of the features and scenarios, but I would like to see the times of the steps inside the scenarios as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
“打印使用步骤定义的位置。最慢的步骤定义(带持续时间)首先列出。”
"Prints where step definitions are used. The slowest step definitions (with duration) are listed first."
这将按步骤定义的平均执行时间对步骤定义进行排序。
This sorts the Step Definitions by their average execution time.