微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript – 如何在Protractor中处理元素未找到的异常

就像Selenium webdriver为 Java提供各种异常处理一样,我们有什么方法可以使用Protractor实现相同的功能.

如果我们想要处理未找到元素的异常,那么使用Protractor的最佳方法是什么?

解决方法

回答这个问题 is now in Protractor’s FAQ

如何捕获ElementNotFound等错误

WebDriver throws errors when commands cannot be completed – e.g. not being able to click on an element which is obscured by another element. If you need to retry these actions,try using 07001. If you would just like to catch the error,do so like this

适应您的问题:

elm.isPresent().then(function(present) {
  /* no webdriver js errors here */}
  if (present) {
    /* element exists */
  } else {
    /* element doesn't exist */
  },function(err) {
  /* error handling here,i.e. element doesn't if got ElementNotFound
     but,eventually and less likely,other issues will fall in here too like
     NoSuchWindowsError or ElementStaleError etc...
  */
});

原文地址:https://www.jb51.cc/js/158572.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐