Selenium2学习-028-WebUI自动化实战实例-026-获取页面元素值或者元素属性值

在自动化脚本编写过程中,经常需要获取页面元素的文本进行判断,以便对于不同的文本进行不同的处理。比如:很多的购物网站,加入购物车的按钮是有多个状态的(加入购物车、到货通知、暂不销售等),那么在实际的操作过程中,需要对此按钮对应的不同的值,执行相应的逻辑。

代码相对比较简单,在此不再详细说明了,直接上码,敬请各位小主参阅,若有不足之处,敬请大神指正,非常感谢!

获取元素值的源码如下所示:

  1     /**
  2      * @function Get text of element. It will be return null when the element not exist or By is null
  3      *
  4      * @author Aaron.ffp
  5      * @version V1.0.0: autoUISelenium main.java.aaron.sele.core SeleniumCore.java getElementText, 2015-1-25 20:48:04 Exp $
  6      *
  7      * @param by  : By
  8      *
  9      * @return String
 10      */
 11     public String getElementText(By by){
 12         String elementText = "";
 13
 14         if (by == null) {
 15             return "";
 16         }
 17
 18         try {
 19             elementText = this.getElement(by).getText().toString().trim();
 20         } catch (NoSuchElementException nsee) {
 21             this.logger.error(nsee);
 22             nsee.printStackTrace();
 23         }
 24
 25         return elementText;
 26     }
 27
 28     /**
 29      * @function Get text of element. It will be return null when the element not exist or locator is empty
 30      *
 31      * @author Aaron.ffp
 32      * @version V1.0.0: autoUISelenium main.java.aaron.sele.core SeleniumCore.java getElementText, 2015-1-25 20:47:40 Exp $
 33      *
 34      * @param locator  : (ID, name, cssSelector, xpath, linkText, className, partialLinkText, tagName)
 35      *
 36      * @return String
 37      */
 38     public String getElementText(String locator){
 39         String elementText = "";
 40
 41         locator = ((locator == null)|| "".equals(locator)) ? "" : locator;
 42
 43         try {
 44             elementText = this.getElement(locator).getText().toString().trim();
 45         } catch (NoSuchElementException nsee) {
 46             this.logger.error(nsee);
 47             nsee.printStackTrace();
 48         }
 49
 50         return elementText;
 51     }
 52
 53     /**
 54      * @function Get text of element. It will be return empty when the element not exist or locator is empty
 55      *
 56      * @author Aaron.ffp
 57      * @version V1.0.0: autoUISelenium main.java.aaron.sele.core SeleniumCore.java getElementText, 2015-1-25 19:10:42 Exp $
 58      *
 59      * @param webdriver : WebDriver
 60      * @param by        : By
 61      *
 62      * @return String
 63      */
 64     public String getElementText(WebDriver webdriver, By by){
 65         String elementText = "";
 66
 67         try {
 68             elementText = this.getElement(webdriver, by).getText().toString().trim();
 69         } catch (NoSuchElementException nsee) {
 70             this.logger.error(nsee);
 71             nsee.printStackTrace();
 72         }
 73
 74         return elementText;
 75     }
 76
 77     /**
 78      * @function Get text of element. It will be return empty when the element not exist or locator is empty
 79      *
 80      * @author Aaron.ffp
 81      * @version V1.0.0: autoUISelenium main.java.aaron.sele.core SeleniumCore.java getElementText, 2015-1-25 19:01:03 Exp $
 82      *
 83      * @param webdriver : WebDriver
 84      * @param locator   : (ID, name, cssSelector, xpath, linkText, className, partialLinkText, tagName)
 85      *
 86      * @return String
 87      */
 88     public String getElementText(WebDriver webdriver, String locator){
 89         String elementText = "";
 90
 91         try {
 92             elementText = this.getElement(webdriver, locator).getText().toString().trim();
 93         } catch (NoSuchElementException nsee) {
 94             this.logger.error(nsee);
 95             nsee.printStackTrace();
 96         }
 97
 98         return elementText;
 99     }
100
101     /**
102      * @function Get text of element. It will be return empty when the element not exist or locator is empty
103      *
104      * @author Aaron.ffp
105      * @version V1.0.0: autoUISelenium main.java.aaron.sele.core SeleniumCore.java getElementTextByXpath, 2015-1-25 20:47:03 Exp $
106      *
107      * @param locator : XPath
108      *
109      * @return String
110      */
111     public String getElementTextByXpath(String locator){
112         String elementText = "";
113
114         try {
115             elementText = this.webdriver.findElement(By.xpath(locator)).getText().toString().trim();
116         } catch (NoSuchElementException nsee) {
117             this.logger.error(nsee);
118             nsee.printStackTrace();
119         }
120
121         return elementText;
122     }
123
124     /**
125      * @function Get text of element. It will be return empty when the element not exist or locator is empty
126      *
127      * @author Aaron.ffp
128      * @version V1.0.0: autoUISelenium main.java.aaron.sele.core SeleniumCore.java getElementText, 2015-1-25 20:47:03 Exp $
129      *
130      * @param webdriver : WebDriver
131      * @param locator   : XPath
132      *
133      * @return String
134      */
135     public String getElementTextByXpath(WebDriver webdriver, String locator){
136         String elementText = "";
137
138         try {
139             elementText = this.webdriver.findElement(By.xpath(locator)).getText().toString().trim();
140         } catch (NoSuchElementException nsee) {
141             this.logger.error(nsee);
142             nsee.printStackTrace();
143         }
144
145         return elementText;
146     }

获取元素属性值的源码如下所示:

  1     /**
  2      * @function Get text of attribute to the element. It will be return empty when the attribute not exist.
  3      *
  4      * @author Aaron.ffp
  5      * @version V1.0.0: autoUISelenium main.java.aaron.sele.core SeleniumCore.java getElementValue, 2015-1-25 20:42:13 Exp $
  6      *
  7      * @param locator   : (ID, name, cssSelector, xpath, linkText, className, partialLinkText, tagName)
  8      * @param attribute : attribute of element
  9      *
 10      * @return String
 11      */
 12     public String getElementValue(By by, String attribute){
 13         String attrbuteValue = "";
 14
 15         try {
 16             attrbuteValue = this.getElement(by).getAttribute(attribute);
 17         } catch (NoSuchElementException nsee) {
 18             this.logger.error(nsee);
 19             nsee.printStackTrace();
 20         }
 21
 22         return attrbuteValue;
 23     }
 24
 25     /**
 26      * @function Get text of attribute to the element. It will be return empty when the attribute not exist.
 27      *
 28      * @author Aaron.ffp
 29      * @version V1.0.0: autoUISelenium main.java.aaron.sele.core SeleniumCore.java getElementValue, 2015-1-25 20:37:02 Exp $
 30      *
 31      * @param locator   : (ID, name, cssSelector, xpath, linkText, className, partialLinkText, tagName)
 32      * @param attribute : attribute of element
 33      *
 34      * @return String
 35      */
 36     public String getElementValue(String locator, String attribute){
 37         String attrbuteValue = "";
 38
 39         try {
 40             attrbuteValue = this.getElement(locator).getAttribute(attribute);
 41         } catch (NoSuchElementException nsee) {
 42             this.logger.error(nsee);
 43             nsee.printStackTrace();
 44         }
 45
 46         return attrbuteValue;
 47     }
 48
 49     /**
 50      * @function Get text of attribute to the element. It will be return empty when the attribute not exist.
 51      *
 52      * @author Aaron.ffp
 53      * @version V1.0.0: autoUISelenium main.java.aaron.sele.core SeleniumCore.java getElementValue, 2015-1-25 19:41:17 Exp $
 54      *
 55      * @param webdriver : WebDriver
 56      * @param locator   : (ID, name, cssSelector, xpath, linkText, className, partialLinkText, tagName)
 57      * @param attribute : attribute of element
 58      *
 59      * @return String
 60      */
 61     public String getElementValue(WebDriver webdriver, By by, String attribute){
 62         String attrbuteValue = "";
 63
 64         try {
 65             attrbuteValue = this.getElement(webdriver, by).getAttribute(attribute);
 66         } catch (NoSuchElementException nsee) {
 67             this.logger.error(nsee);
 68             nsee.printStackTrace();
 69         }
 70
 71         return attrbuteValue;
 72     }
 73
 74     /**
 75      * @function Get text of attribute to the element. It will be return empty when the attribute not exist.
 76      *
 77      * @author Aaron.ffp
 78      * @version V1.0.0: autoUISelenium main.java.aaron.sele.core SeleniumCore.java getElementValue, 2015-1-25 19:36:23 Exp $
 79      *
 80      * @param webdriver : WebDriver
 81      * @param locator   : (ID, name, cssSelector, xpath, linkText, className, partialLinkText, tagName)
 82      * @param attribute : attribute of element
 83      *
 84      * @return String
 85      */
 86     public String getElementValue(WebDriver webdriver, String locator, String attribute){
 87         String attrbuteValue = "";
 88
 89         try {
 90             attrbuteValue = this.getElement(webdriver, locator).getAttribute(attribute);
 91         } catch (NoSuchElementException nsee) {
 92             this.logger.error(nsee);
 93             nsee.printStackTrace();
 94         }
 95
 96         return attrbuteValue;
 97     }
 98
 99     /**
100      * @function Get text of attribute to the element. It will be return empty when the attribute not exist.
101      *
102      * @author Aaron.ffp
103      * @version V1.0.0: autoUISelenium main.java.aaron.sele.core SeleniumCore.java getElementValueByXpath, 2015-1-25 20:47:03 Exp $
104      *
105      * @param locator   : XPath
106      * @param attribute : attribute of element
107      *
108      * @return String
109      */
110     public String getElementValueByXpath(String locator, String attribute){
111         String attrbuteValue = "";
112
113         try {
114             attrbuteValue = this.webdriver.findElement(By.xpath(locator)).getAttribute(attribute);
115         } catch (NoSuchElementException nsee) {
116             this.logger.error(nsee);
117             nsee.printStackTrace();
118         }
119
120         return attrbuteValue;
121     }
122
123     /**
124      * @function Get text of attribute to the element. It will be return empty when the attribute not exist.
125      *
126      * @author Aaron.ffp
127      * @version V1.0.0: autoUISelenium main.java.aaron.sele.core SeleniumCore.java getElementValueByXpath, 2015-1-25 20:47:03 Exp $
128      *
129      * @param webdriver : WebDriver
130      * @param locator   : XPath
131      * @param attribute : attribute of element
132      *
133      * @return String
134      */
135     public String getElementValueByXpath(WebDriver webdriver, String locator, String attribute){
136         String attrbuteValue = "";
137
138         try {
139             attrbuteValue = this.webdriver.findElement(By.xpath(locator)).getAttribute(attribute);
140         } catch (NoSuchElementException nsee) {
141             this.logger.error(nsee);
142             nsee.printStackTrace();
143         }
144
145         return attrbuteValue;
146     }

至此,WebUI 自动化功能测试脚本第 026-获取页面元素值或者元素属性值 顺利完结,希望此文能够给初学 Selenium 的您一份参考。

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

时间: 2024-11-05 12:14:55

Selenium2学习-028-WebUI自动化实战实例-026-获取页面元素值或者元素属性值的相关文章

Selenium2学习-003-Selenium2 WebUI自动化实战实例-001-百度搜索

此文主要通过百度搜索功能,进行 Selenium2 的实战实例讲解,文中所附源代码于 2015-01-16 02:01 亲测通过,敬请亲们阅览.希望能对初学 Selenium2 UI 自动化测试编程的亲们有所帮助.若有不足之处,敬请大神指正,不胜感激! 脚本实现功能步骤如下所示: 启动 Chrome 浏览器 打开百度网址:www.baidu.com 输入搜索项:范丰平 博客园 获取搜索结果的第一项,并打开 关闭 Chrome 浏览器(为显示打开效果,已将此项注释) 夜已深了,鬼话少述,直接上源代

Selenium2学习-034-WebUI自动化实战实例-032-获取页面 body 大小

获取 body 元素大小的方法,非常简单,直接上码,敬请参阅! 1 /** 2 * Get body size 3 * 4 * @author Aaron.ffp 5 * @version V1.0.0: autoSeleniumDemo main.aaron.sele.core SeleniumCore.java getBrowserBodySize, 2015-8-8 14:12:49 Exp $ 6 * 7 * @return int[width,height] 8 */ 9 public

Selenium2学习-026-WebUI自动化实战实例-024-获取页面元素

非常简单的方法封装,就不啰嗦了,直接上码咯 ^_^ 1 /** 2 * Get element. It will be return null when there is not such element. 3 * 4 * @author Aaron.ffp 5 * @version V1.0.0: autoSeleniumDemo main.aaron.sele.core SeleniumCore.java getWebElement, 2015-7-31 13:56:59 Exp $ 6 *

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

之前有写过两篇博文讲述了 WebUI 自动化测试脚本中常用的截图方法,敬请参阅如下所示链接: 浏览器显示区域截图 浏览器指定区域截图 那么当需要截取的区域不在浏览器显示窗口范围之内时,之前的方法显然无法满足,那么该如何操作呢? 刷新页面,相当于页面归位操作 判断要截取的区域范围与当前浏览器显示区域大小关系,若截取范围大于显示区域,则重置浏览器窗口大小 模拟鼠标操作滚动屏幕,使需要截取的区域显示到浏览器窗口 重新计算截取起始位置相对于当前显示区域的坐标 调用之前的截图方法截图 下面就以获取易迅网首

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.selenium.WebDriverException: Failed to connect to binary FirefoxBinary 报错解决方法. 希望能对初学 Selenium2 WebUI 自动化测试编程的亲们有所帮助.若有不足之处,敬请大神指正,不胜感激! 之前给朋友初步介绍了 S

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

日常的 Web UI 自动化测试过程中,get 或 navigate 到指定的页面后,若想截图的元素或者指定区域范围不在浏览器的显示区域内,则通过截屏则无法获取相应的信息,反而浪费了无畏的图片服务器资源,当然,最重要的还是未能达到自己的预期,是不是很内伤啊.此时,我们就不得不像正常用户操作一样,通过滚动页面至相应的区域,那么该如何滚动呢,此文就此给出答案. 此文实现的页面滚动,是通过 js 操作实现的,敬请各位小主参阅.若有不足之处,敬请大神指正,非常感谢! 直接上码了...... 1 /**

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

通常在 WebUI 自动化测试过程中必然会涉及到文件上传的自动化测试需求,而开发在进行相应的技术实现是不同的,粗略可划分为两类:input标签类(类型为file)和非input标签类(例如:div.a或其他方式结合实现). 非input标签类因其有各式各样的实现方式,需要考虑具体的场景,因而此文对此类文件上传不做讲解,以input标签实现文件上传的方式进行讲解,请知悉! 解决方案有如下三种: 1.定位元素直接通过sendkeys修改input标签的文件链接: 2.通过第三方控件(AutoIt)编

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

在日常的 WebUI 自动化测试脚本编写过程中,经常需要打开新的页面,或者在多个打开的页面之间进行切换,以对页面元素进行相应的操作,以模拟用户的行为,实现 UI 的自动化测试.在过往的时间中,经常有初学 Selenium(webdriver) 的朋友问及如何选择窗口的问题,其实 Selenium 已经给我们提供的了相应的方法去解决这个问题.解决思路如下: 1.通过 webdriver.getWindowHandles() 获取所有已打开窗口的信息 Set<String> 2.遍历上述信息,并切

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

日常的 Web 网站开发的过程中,为提升登录安全或防止用户通过脚本进行黄牛操作(宇宙最贵铁皮天朝魔都的机动车牌照竞拍中),很多网站在登录的时候,添加了验证码验证,而且验证码的实现越来越复杂,对其进行脚本识别的难度也越来越高.这对我们自动化脚本编写带了非常的不便,那么如何解决登录时的验证码问题呢?经常有初学自动化脚本编写的小主们问及此问题. 此文主要针对如何解决自动化测试脚本中含登录态的操作问题,即如何降低验证码对自动化脚本编写过程中的解决方法进行分析和解决,并以实例演示(基于易迅网易迅账号登录)