测试用例场景
获取测试对象的内容是前端自动化测试里一定会使用到的技术。比如我们要判断页面上是否显示了一个提示,那么我们就需要找到这个提示对象,然后获取其中的文字,再跟我们的预期进行比较。在webdriver中使用element.attribute()方法可以获取dom元素(测试对象)的属性。
获取测试对象的属性能够帮我们更好的进行对象的定位。比如页面上有很多class都是'btn'的div,而我们需要定位其中1个有具有title属性的div。由于selenium-webdriver是不支持直接使用title来定位对象的,所以我们只能先把所有class是btn的div都找到,然后遍历这些div,获取这些div的title属性,一旦发现具体title属性的div,那么返回这个div既可。在webdriver中,使用element.text()方法可以返回dom节点的内容(text)。
Python脚本
测试用HTML代码:
attribute attribute
测试用Python代码:
# coding=gbk'''Created on 2013年12月15日@author: Administrator'''from selenium import webdriverfrom time import sleepimport osif 'HTTP_PROXY' in os.environ:del os.environ['HTTP_PROXY']#打开测试用HTML文件dr = webdriver.Firefox()file_path = 'file:///' + os.path.abspath('attribute.html')dr.get(file_path)tooltips = dr.find_element_by_id('tooltip') tooltip = tooltips.get_attribute('data-original-title')print tooltipprint tooltips.textcomparation = 'Python-webdriver better than selenium-webdriver'#对tooltip做判断,如果是希望的结果,那么会打印出case is pass。如果不是我们希望的结果,那么这个测试用例就会失败if tooltip == comparation: print 'case is pass'sleep(5)dr.quit()