Java的selenium代码随笔
Posted 煦色韶光
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java的selenium代码随笔相关的知识,希望对你有一定的参考价值。
//判断元素是否存在
public boolean IsElementPresent (WebElement webElement, By by) {
boolean status = false;
try {
if (webElement == null) {
driver.findElement(by);
status = true;
}else {
webElement.findElement(by);
status = true;
}
} catch (NoSuchElementException e) {
status = false;
}
return status;
}
//判断标签是否存在
public boolean IsTagNamePresent (WebElement webElement, String tagName) {
boolean status = false;
if (!webElement.getAttribute(tagName).equals("")){
status=true;
}else {
status=false;
}
return status;
}
以上是关于Java的selenium代码随笔的主要内容,如果未能解决你的问题,请参考以下文章