我想测量加载页面的时间。我使用watir-webdriver性能gem和这段代码:
5.times do
@b.goto ("#{@host}")
puts "Load Time: #{@b.performance.summary[:response_time]/1000.000} seconds."
end
但现在我需要制作yalm文件,收集我的统计数据的黄瓜测试的时间信息。
答案 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)