我想检查span
with id
=是否"Error_Title"
存在。由于这种情况,我遇到了超时异常。我不知道在这种情况下应该在哪里处理异常。
if(ie.span(:id,"Error_Title").exists?)
puts "yes it is there"
end
根据加载网页时如何避免由 watir-webdriver 超时错误导致的程序终止?,这应该有效(未经测试):
begin
if(ie.span(:id,"Error_Title").exists?)
puts "yes it is there"
end
rescue Timeout::Error
puts "Gotcha!"
end