公共类样本{
public static void main(String[] args) {
method();
}
public static void method()
{
try {
System.out.println("function");
throw new StaleElementReferenceException("thih sexception occured");
}
catch (StaleElementReferenceException e) {
method();
}
catch (Exception e) {
System.out.println("AssertFail");
}
}
}
如何使用 Try catch 在非返回方法中避免无限递归...例如下面的代码...当 StaleElementException 仅发生一次我想执行“异常之后的函数,如果过时元素第二次出现我想要它去异常捕获并打印断言失败..如何?