我想测量加载页面的时间。我使用 watir-webdriver 性能 gem 和这段代码:
5.times do
@b.goto ("#{@host}")
puts "Load Time: #{@b.performance.summary[:response_time]/1000.000} seconds."
end
但现在我需要生成 yalm 文件,该文件收集 cucumber-test 的时间信息以供我统计。
我想测量加载页面的时间。我使用 watir-webdriver 性能 gem 和这段代码:
5.times do
@b.goto ("#{@host}")
puts "Load Time: #{@b.performance.summary[:response_time]/1000.000} seconds."
end
但现在我需要生成 yalm 文件,该文件收集 cucumber-test 的时间信息以供我统计。