我正在浏览一个站点列表,并使用 Watir 在每个页面的源代码中查找每个站点。但是,在大约 20 或 30 个站点之后,浏览器在加载某个页面时超时,它破坏了我的脚本,我收到了这个错误:
rbuf_fill:执行已过期(Timeout::Error)
我正在尝试实现一种方法来检测它何时超时,然后从它停止但遇到问题的地方重新开始测试站点。这是我的代码:
ie = Watir::Browser.new :firefox, :profile => "default"
testsite_array = Array.new
y=0
File.open('topsites.txt').each do |line|
testsite_array[y] = line
y=y+1
end
total = testsite_array.length
count = 0
begin
while count <= total
site = testsite_array[count]
ie.goto site
if ie.html.include? 'teststring'
puts site + ' yes'
else
puts site + ' no'
end
rescue
retry
count = count+1
end
end
ie.close