如何使用watir-webdriver性能gem测量黄瓜yaml文件中的页面加载时间?

时间:2013-01-09 10:15:04

标签: performance cucumber yaml watir-webdriver

我想测量加载页面的时间。我使用watir-webdriver性能gem和这段代码:

5.times do
  @b.goto ("#{@host}")    
  puts "Load Time: #{@b.performance.summary[:response_time]/1000.000} seconds."
end

但现在我需要制作yalm文件,收集我的统计数据的黄瓜测试的时间信息。

1 个答案:

答案 0 :(得分:2)

def write_to_file(p)
  File.open('performance.txt', 'a') {|file| file.write("#{p} - #{@b.performance.summary[:response_time]/1000.000} seconds\n") }
end

@page = "google.com"
write_to_file(@page)