require 'watir-webdriver'
begin
url='http://localhost/test/test.php'
ie =Watir::Browser.new:chrome
ie.goto url
rescue Timeout::Error
puts "time out"
ie.close
retry
end
这是我的 php 文件:http://localhost/test/test.php
<?php
set_time_limit(90);
sleep(60);
echo "hello"
?>
输出->超时,然后出错:
Errno::ECONNREFUSED(无法建立连接,因为目标机器主动拒绝了它。- connect(2))。
基本上它应该在超时后关闭ie然后再次打开ie等等