码迷,mamicode.com
首页 > 编程语言 > 详细

Java的selenium代码随笔(7)

时间:2018-12-11 12:49:46      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:判断   status   try   mep   ebe   res   stat   drive   false   

//判断元素是否存在
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代码随笔(7)

标签:判断   status   try   mep   ebe   res   stat   drive   false   

原文地址:https://www.cnblogs.com/xxsl/p/10101158.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!