0

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

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

但现在我需要生成 yalm 文件,该文件收集 cucumber-test 的时间信息以供我统计。

4

1 回答 1

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)
于 2013-01-09T15:28:35.750 回答