作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
1) { List b = driver.f-6ren">
int btnSize = driver.findElements(By.xpath("...")).size();
if ( btnSize > 1) {
List<WebElement> b = driver.findElements(By.xpath("..."));
} else if (btnSize == 1){
WebElement b = driver.findElement(By.xpath("..."));
} else {
//How do I throw an Exception (e.g. ElementNotFoundException)
//these variants did not work?
throw ElementNotFoundException;
throw (new ElementNotFoundException);
throw (new ElementNotFoundException("not found"));
throw (new ElementNotFoundException(Exception e));
}
最佳答案
当抛出一个新的异常时,基本上你通过调用它的构造函数来创建一个对象。所以它是
throw new ElementNotFoundException("not found");
或
throw new ElementNotFoundException(exception)
其中异常是异常你咳嗽的对象 ;)
关于java - 如何抛出新的 ElementNotFoundException?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21703405/
int btnSize = driver.findElements(By.xpath("...")).size(); if ( btnSize > 1) { List b = driver.f
所以我试图编写一个简单的菜单,其中一些选项被打印到屏幕上,然后我询问用户他们想要哪个选项。无论他们输入什么,都应该保存并将它们发送到菜单选项之一。相反,它在第 20 行 (String userInp
我正在尝试访问 https://eagletw.mohavecounty.us/treasurer/treasurerweb/search.jsp 的 docSearch 形式使用最新 HTMLUni
我是一名优秀的程序员,十分优秀!