1

在 watir-cucumber 执行期间,是否有一种标准方法可以打印终端中每个步骤的持续时间?

在此处输入图像描述 使用“后续步骤”和全局变量可能会做出某种发明。但是,有正确的方法吗?

4

2 回答 2

2

你可以使用这样的钩子:

Before do 
  @last_time = Time.new  
end

AfterStep do
  now = Time.new
  puts "Step duration: #{((now - @last_time)*100).round} ms"    # if (now-@last_time) > 10        
  @last_time = now
end

通过在新行上输出持续时间会更加冗长,但除非您想要更深入地了解(通过创建自己的格式化程序),否则您无法在指定的位置输出内容。

if如果您只对花费超过某个阈值的步骤感兴趣,请取消注释。

于 2017-05-05T13:23:53.300 回答
0

最简单的方法是使用 Ruby 内置的 Time 类。使用 Time.new,我们可以在执行步骤定义中的代码之前和之后将当前时间记录到一个局部变量中。然后我们通过从 end_time 中减去 start_time 来计算持续时间。

#get the start time
 start_time = Time.new

#do whatever the step needs to do here

#get the end time
 end_time = Time. new

#calculate duration 
duration = end_time - start_time
puts duration
于 2014-12-11T10:40:55.070 回答