非常简单的源码,敬请各位小主参阅。若有不足之处,敬请大神指正,不胜感激!

     /**
* Verify the element exist or not
*
* @author Aaron.ffp
* @version V1.0.0: autoUISelenium main.java.aaron.sele.demo IsWebelementExist.java isElementExist, 2015-1-22 3:13:34 Exp $
*
* @param by : By
*
* @return boolean
*/
public boolean isElementExist(By by){
boolean exist = false; try {
this.webdriver.findElement(by);
exist = true;
} catch (NoSuchElementException e) {
this.logger.error(e);
} return exist;
} /**
* Verify the element exist or not(ID, name, cssSelector, xpath, linkText, className, partialLinkText, tagName)
*
* @author Aaron.ffp
* @version V1.0.0: autoUISelenium main.java.aaron.sele.demo IsWebelementExist.java isElementExist, 2015-1-22 3:13:34 Exp $
*
* @param locator : (ID, name, cssSelector, xpath, linkText, className, partialLinkText, tagName)
*
* @return boolean
*/
public boolean isElementExist(String locator){
boolean exist = false; /* ID */
try {
this.webdriver.findElement(By.id(locator));
exist = true;
return exist;
} catch (NoSuchElementException e) {
this.logger.error(e);
} /* name */
try {
this.webdriver.findElement(By.name(locator));
exist = true;
return exist;
} catch (NoSuchElementException e) {
this.logger.error(e);
} /* cssSelector */
try {
this.webdriver.findElement(By.cssSelector(locator));
exist = true;
return exist;
} catch (NoSuchElementException e) {
this.logger.error(e);
} /* Xpath */
try {
this.webdriver.findElement(By.xpath(locator));
exist = true;
return exist;
} catch (NoSuchElementException e) {
this.logger.error(e);
} /* linkText */
try {
this.webdriver.findElement(By.linkText(locator));
exist = true;
return exist;
} catch (NoSuchElementException e) {
this.logger.error(e);
} /* className */
try {
this.webdriver.findElement(By.className(locator));
exist = true;
return exist;
} catch (NoSuchElementException e) {
this.logger.error(e);
} /* partialLinkText */
try {
this.webdriver.findElement(By.partialLinkText(locator));
exist = true;
return exist;
} catch (NoSuchElementException e) {
this.logger.error(e);
} /* tagName */
try {
this.webdriver.findElement(By.tagName(locator));
exist = true;
return exist;
} catch (NoSuchElementException e) {
this.logger.error(e);
} return exist;
} /**
* Verify the element exist or not(ID, name, cssSelector, xpath, linkText, className, partialLinkText, tagName)
*
* @author Aaron.ffp
* @version V1.0.0: autoUISelenium main.java.aaron.sele.demo IsWebelementExist.java isElementExist, 2015-1-22 3:13:34 Exp $
*
* @param webdriver : WebDriver
* @param locator : (ID, name, cssSelector, xpath, linkText, className, partialLinkText, tagName)
*
* @return boolean
*/
public boolean isElementExist(WebDriver webdriver, String locator){
boolean exist = false; /* ID */
try {
webdriver.findElement(By.id(locator));
exist = true;
return exist;
} catch (NoSuchElementException e) {
this.logger.error(e);
} /* name */
try {
webdriver.findElement(By.name(locator));
exist = true;
return exist;
} catch (NoSuchElementException e) {
this.logger.error(e);
} /* cssSelector */
try {
webdriver.findElement(By.cssSelector(locator));
exist = true;
return exist;
} catch (NoSuchElementException e) {
this.logger.error(e);
} /* xpath */
try {
webdriver.findElement(By.xpath(locator));
exist = true;
return exist;
} catch (NoSuchElementException e) {
this.logger.error(e);
} /* linkText */
try {
webdriver.findElement(By.linkText(locator));
exist = true;
return exist;
} catch (NoSuchElementException e) {
this.logger.error(e);
} /* className */
try {
webdriver.findElement(By.className(locator));
exist = true;
return exist;
} catch (NoSuchElementException e) {
this.logger.error(e);
} /* partialLinkText */
try {
webdriver.findElement(By.partialLinkText(locator));
exist = true;
return exist;
} catch (NoSuchElementException e) {
this.logger.error(e);
} /* tagName */
try {
webdriver.findElement(By.tagName(locator));
exist = true;
return exist;
} catch (NoSuchElementException e) {
this.logger.error(e);
} return exist;
} /**
* @function Verify the element exist or not
*
* @author Aaron.ffp
* @version V1.0.0: autoUISelenium main.java.aaron.sele.core SeleniumCore.java isElementExistByXpath, 2014-11-23 4:03:52 Exp $
*
* @param webdriver : WebDriver
* @param locator : XPath
*
* @return boolean
*/
public boolean isElementExistByXpath(WebDriver webdriver, String locator){
boolean isExists = false; try {
webdriver.findElement(By.xpath(locator));
isExists = true;
} catch (NoSuchElementException nsee) {
this.logger.error(nsee);
nsee.printStackTrace();
} return isExists;
} /**
* @function Verify the element exist or not
*
* @author Aaron.ffp
* @version V1.0.0: autoUISelenium main.java.aaron.sele.core SeleniumCore.java isWebelementExistByXpath, 2014-11-23 4:03:52 Exp $
*
* @param locator : XPath
* @return boolean
*/
public boolean isElementExistByXpath(String locator){
boolean isExists = false; try {
this.webdriver.findElement(By.xpath(locator));
isExists = true;
} catch (NoSuchElementException nsee) {
this.logger.error(nsee);
nsee.printStackTrace();
} return isExists;
}

PS:当元素不可用或者隐藏式,返回的也是不存在,请知悉!

至此,WebUI 自动化功能测试脚本第 027-判断元素是否存在 顺利完结,希望此文能够给初学 Selenium 的您一份参考。

最后,非常感谢亲的驻足,希望此文能对亲有所帮助。热烈欢迎亲一起探讨,共同进步。非常感谢! ^_^

Selenium2学习-029-WebUI自动化实战实例-027-判断元素是否存在的更多相关文章

  1. Selenium2学习-012-WebUI自动化实战实例-010-解决元素失效:StaleElementReferenceException: stale element reference: element is not attached to the page document

    元素失效的想象提示信息如下图所示,此种问题通常是因为元素页面刷新之后,为重新获取元素导致的. 解决此类问题比较简单,只需要在页面刷新之后,重新获取一下元素,就可以消除此种错误了. 以下以易迅网搜索为例 ...

  2. Selenium2学习-030-WebUI自动化实战实例-028-获取元素位置及大小

    自动化测试过程中,有时需要获取元素的位置.大小,以获取元素的位置,通过 Actions 模拟鼠标,进行相对坐标操作.例如,有些元素定位不方便,或者需要对某一元素相对区域范围进行暴力点击测试,此时就需要 ...

  3. Selenium2学习-001-Selenium2 WebUI自动化Java开发 Windows 环境配置

    此文主要介绍 Selenium2 WebUI自动化Java开发 Windows 环境配置,供各位亲们参考,若有不足之处,敬请各位大神指正,非常感谢! 所需软件列表如下所示: 所属分类 具体名称 备注 ...

  4. Selenium2学习-007-WebUI自动化实战实例-005-解决 Firefox 版本不兼容:org.openqa.selenium.WebDriverException: Failed to connect to binary FirefoxBinary

    此文主要讲述 Java 运行 Selenium 脚本时,因 Friefox 浏览器版本与 selenium-server-standalone-x.xx.x.jar 不兼容引起的 org.openqa ...

  5. Selenium2学习-035-WebUI自动化实战实例-033-页面快照截图应用之三 -- 区域截图(专业版)

    之前有写过两篇博文讲述了 WebUI 自动化测试脚本中常用的截图方法,敬请参阅如下所示链接: 浏览器显示区域截图 浏览器指定区域截图 那么当需要截取的区域不在浏览器显示窗口范围之内时,之前的方法显然无 ...

  6. Selenium2学习-027-WebUI自动化实战实例-025-JavaScript 在 Selenium 自动化中的应用实例之三(页面滚屏,模拟鼠标拖动滚动条)

    日常的 Web UI 自动化测试过程中,get 或 navigate 到指定的页面后,若想截图的元素或者指定区域范围不在浏览器的显示区域内,则通过截屏则无法获取相应的信息,反而浪费了无畏的图片服务器资 ...

  7. Selenium2学习-039-WebUI自动化实战实例-文件上传下载

    通常在 WebUI 自动化测试过程中必然会涉及到文件上传的自动化测试需求,而开发在进行相应的技术实现是不同的,粗略可划分为两类:input标签类(类型为file)和非input标签类(例如:div.a ...

  8. Selenium2学习-018-WebUI自动化实战实例-016-自动化脚本编写过程中的登录验证码问题

    日常的 Web 网站开发的过程中,为提升登录安全或防止用户通过脚本进行黄牛操作(宇宙最贵铁皮天朝魔都的机动车牌照竞拍中),很多网站在登录的时候,添加了验证码验证,而且验证码的实现越来越复杂,对其进行脚 ...

  9. Selenium2学习-016-WebUI自动化实战实例-014-Selenium 窗口选择

    在日常的 WebUI 自动化测试脚本编写过程中,经常需要打开新的页面,或者在多个打开的页面之间进行切换,以对页面元素进行相应的操作,以模拟用户的行为,实现 UI 的自动化测试.在过往的时间中,经常有初 ...

随机推荐

  1. 【BZOJ】1040: [ZJOI2008]骑士(环套树dp)

    http://www.lydsy.com/JudgeOnline/problem.php?id=1040 简直不能再神的题orz. 蒟蒻即使蒟蒻,完全不会. 一开始看到数据n<=1000000就 ...

  2. 【BZOJ】1877: [SDOI2009]晨跑(最小费用最大流)

    http://www.lydsy.com/JudgeOnline/problem.php?id=1877 费用流做多了,此题就是一眼题. 拆点表示只能经过一次,容量为1,费用为0. 然后再连边即可,跑 ...

  3. ThinkPHP 中M方法和D方法详解----转载

    转载的地址,http://blog.163.com/litianyichuanqi@126/blog/static/115979441201223043452383/ 自己学到这里的时候,不能清除的分 ...

  4. svchost.exe是什么?为什么一直在运行

    原文:http://www.howtogeek.com/howto/windows-vista/what-is-svchostexe-and-why-is-it-running/ 自己简单翻译了下,图 ...

  5. visual 2008中error PRJ0003 : 生成 cmd.exe 时出错

    visual 2008中error PRJ0003 : 生成 cmd.exe 时出错”,   和vs2008 sp1没关系 解决方案:工具—>选项—>项目和解决方案—>VC++目录, ...

  6. typecho插件编写教程1 - 从HelloWorld说起

    typecho插件编写教程1 - 从HelloWorld说起 老高 187 5月25日 发布 推荐 0 推荐 收藏 2 收藏,189 浏览 最近老高正在编写一个关于typecho的插件,由于typec ...

  7. 性能测试工具ab

    Apache附带的一个小工具,专门用于HTTP Server的基准测试(benchmark testing),可以同时模拟多个并发请求.ab不像LR那么强大,但是它足够轻便. 格式:ab [optio ...

  8. laravel 自定义函数 使用

    1.创建app/helpers.php 2.注册路径 { ... "autoload": { "files": [ "app/helpers.php& ...

  9. What is Heterogeneous Computing?

    http://developer.amd.com/resources/heterogeneous-computing/what-is-heterogeneous-computing/ Heteroge ...

  10. spring容器IOC创建对象<三>

    问题?Spring的DI讲解.DI有几种注入方式.一.spring的DI:依赖注入给属性赋值DI定义:一个对象类的属性可以使用springDI(依赖注入)来进行赋值,但是并不是所有的类属性都适合spr ...