0

我想检查spanwith id=是否"Error_Title"存在。由于这种情况,我遇到了超时异常。我不知道在这种情况下应该在哪里处理异常。

if(ie.span(:id,"Error_Title").exists?)
  puts "yes it is there"
end   
4

1 回答 1

0

根据加载网页时如何避免由 watir-webdriver 超时错误导致的程序终止?,这应该有效(未经测试):

begin
  if(ie.span(:id,"Error_Title").exists?)
    puts "yes it is there"
  end 
rescue Timeout::Error
  puts "Gotcha!"
end
于 2013-09-04T09:51:52.127 回答