首页 前端知识 python webdriver 测试框架数据驱动json文件驱动的方式

python webdriver 测试框架数据驱动json文件驱动的方式

2024-07-21 00:07:17 前端知识 前端哥 788 391 我要收藏

简介:

数据驱动excel驱动方式,就是数据配置在excel里面,主程序调用的时候每次用从excel里取出的数据作为参数,进行操作,

需要掌握的地方是对excel的操作,要灵活的找到目标数据

测试数据.xlsx:

路径-D:\test\0627

ExcelUtil.py:

 
  1. #encoding=utf-8

  2. from openpyxl import load_workbook

  3. class ParseExcel(object):

  4.     def __init__(self, excelPath, sheetName):

  5.         # 将要读取的excel加载到内存

  6.         self.wb = load_workbook(excelPath)

  7.         # 通过工作表名称获取一个工作表对象

  8.         self.sheet = self.wb.get_sheet_by_name(sheetName)

  9.         # 获取工作表中存在数据的区域的最大行号

  10.         self.maxRowNum = self.sheet.max_row

  11.     def getDatasFromSheet(self):

  12.         # 用于存放从工作表中读取出来的数据

  13.         dataList = []

  14.         # 因为工作表中的第一行是标题行,所以需要去掉

  15.         for line in self.sheet.rows:  

  16.             # 遍历工作表中数据区域的每一行,

  17.             # 并将每行中各个单元格的数据取出存于列表tmpList中,

  18.             # 然后再将存放一行数据的列表添加到最终数据列表dataList中

  19.             tmpList = []

  20.             tmpList.append(line[1].value)

  21.             tmpList.append(line[2].value)

  22.             dataList.append(tmpList)

  23.         # 将获取工作表中的所有数据的迭代对象返回

  24.         return dataList[1:]

  25. if __name__ == '__main__':

  26.     excelPath = u'E:\\数据驱动\\测试数据.xlsx'

  27.     sheetName = u"搜索数据表"

  28.     pe = ParseExcel(excelPath, sheetName)

  29.     print pe.getDatasFromSheet()

  30.     for i in pe.getDatasFromSheet():

  31.         print i[0], i[1]

加print调试日志:

  1. #encoding=utf-8

  2. from openpyxl import load_workbook

  3. class ParseExcel(object):

  4.     def __init__(self,excelPath,sheetName):

  5.         self.wb=load_workbook(excelPath)

  6.         self.sheet=self.wb.get_sheet_by_name(sheetName)

  7.         self.maxRowNum=self.sheet.max_row

  8.     def getDatasFromSheet(self):

  9.         dataList=[]

  10.         for line in self.sheet.rows:

  11.             tmpList=[]

  12.             tmpList.append(line[1].value)

  13.             print "line[1].value",line[1].value

  14.             tmpList.append(line[2].value)

  15.             print "line[2].value",line[2].value

  16.             dataList.append(tmpList)

  17.         print dataList[1:]

  18.         return dataList[1:]

  19. if __name__=='__main__':

  20.     excelPath=u"d:\\test\\0627\\测试数据.xlsx"

  21.     sheetName=u"搜索数据表"

  22.     pe=ParseExcel(excelPath,sheetName)

  23.     print pe.getDatasFromSheet()

  24.     for i in pe.getDatasFromSheet():

  25.         print i[0],i[1]

  26. 单独运行结果:

  27. D:\test\0627>python  ExcelUtil.py

  28. ExcelUtil.py:7: DeprecationWarning: Call to deprecated function get_sheet_by_name (Use wb[sheetname]).

  29.   self.sheet=self.wb.get_sheet_by_name(sheetName)

  30. line[1].value 搜索词

  31. line[2].value 期望结果

  32. line[1].value 邓肯

  33. line[2].value 蒂姆

  34. line[1].value 乔丹

  35. line[2].value 迈克尔

  36. line[1].value 库里

  37. line[2].value 斯蒂芬

  38. [[u'\u9093\u80af', u'\u8482\u59c6'], [u'\u4e54\u4e39', u'\u8fc8\u514b\u5c14'], [u'\u5e93\u91cc', u'\u65af\u8482\u82ac']]

  39. [[u'\u9093\u80af', u'\u8482\u59c6'], [u'\u4e54\u4e39', u'\u8fc8\u514b\u5c14'], [u'\u5e93\u91cc', u'\u65af\u8482\u82ac']]

  40. line[1].value 搜索词

  41. line[2].value 期望结果

  42. line[1].value 邓肯

  43. line[2].value 蒂姆

  44. line[1].value 乔丹

  45. line[2].value 迈克尔

  46. line[1].value 库里

  47. line[2].value 斯蒂芬

  48. [[u'\u9093\u80af', u'\u8482\u59c6'], [u'\u4e54\u4e39', u'\u8fc8\u514b\u5c14'], [u'\u5e93\u91cc', u'\u65af\u8482\u82ac']]

  49. 邓肯 蒂姆

  50. 乔丹 迈克尔

  51. 库里 斯蒂芬

最后运行的脚本:

 
  1. data_drivern_by_excel.py:

  2. #encoding=utf-8

  3. from selenium import webdriver

  4. import unittest,time

  5. import logging,traceback

  6. import ddt

  7. from ExcelUtil import ParseExcel

  8. from selenium.common.exceptions import NoSuchElementException

  9. #初始化日志对象

  10. logging.basicConfig(

  11.     #日志级别

  12.     level=logging.INFO,

  13.     #日志格式

  14.     #时间、代码所在文件名、代码行号、日志级别名称、日志信息

  15.     format='%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s',

  16.     #打印日志的时间

  17.     datefmt='%a,%Y-%m-%d %H:%M:S',

  18.     #日志文件存放的目录(目录必须存在)及日志文件名

  19.     filename='d:\\test\\0627\\report.log',

  20.     #打开日志文件的方式

  21.     filemode='w'

  22. )

  23. excelPath=u"d:\\test\\0627\\测试数据.xlsx"

  24. sheetName=u"搜索数据表"

  25. #创建ParseExcel类的实例对象

  26. excel=ParseExcel(excelPath,sheetName)

  27. #数据驱动装饰器

  28. @ddt.ddt

  29. class TestDemo(unittest.TestCase):

  30.     def setUp(self):

  31.         self.driver=webdriver.Firefox(executable_path='c:\\geckodriver')

  32.     

  33.     @ddt.data(*excel.getDatasFromSheet())#对调用函数返回的含列表的列表进行解包,传过来的就是列表中的一个列表

  34.     def test_dataDrivenByFile(self,data):

  35.         print "tuple(data):",tuple(data)#把传过来的一个列表转换成元祖,包含两个元素,搜索值和期望值

  36.         testData,expectData=tuple(data)

  37.         print "testData:",testData#调试用

  38.         print "expectData:",expectData#调试用

  39.         url='http://www.baidu.com'

  40.         #访问百度首页

  41.         self.driver.get(url)

  42.         #讲浏览器窗口最大化

  43.         self.driver.maximize_window()

  44.         #print testData,expectData   

  45.         #设置隐式等待时间为10秒钟    

  46.         self.driver.implicitly_wait(10)

  47.         try:

  48.             #获取当前的时间戳,用于后面计算查询耗时用

  49.             start=time.time()

  50.             #获取当前时间的字符串,表示测试开始时间

  51.             startTime=time.strftime("%Y-%m-%d %H:%M:%S",time.localtime())

  52.             #找到搜索输入框,并输入测试数据

  53.             self.driver.find_element_by_id('kw').send_keys(testData)

  54.             #找到搜索按钮,并点击

  55.             self.driver.find_element_by_id('su').click()

  56.             time.sleep(3)

  57.             #断言期望结果是否出现在页面源代码中

  58.             self.assertTrue(expectData in self.driver.page_source)

  59.             print u"搜索-%s,期望-%s"%(testData,expectData)

  60.         except NoSuchElementException,e:

  61.             logging.error(u"查找的页面元素不存在,异常堆栈信息:"+str(traceback.format_exc()))

  62.         except AssertionError,e:

  63.             logging.info(u'搜索-"%s",期望-"%s",-失败'%(testData,expectData))

  64.         except Exception,e:

  65.             logging.error(u"未知错误,错误信息:"+str(traceback.format_exc()))

  66.         else:

  67.             logging.info(u'搜索- "%s",期望-"%s"-通过'%(testData,expectData))

  68.     def tearDown(self):

  69.         self.driver.quit()

  70.     

  71. if __name__=='__main__':

  72.     unittest.main() 

结果:

  1. d:\test\0627>python test.py

  2. d:\test\0627\ExcelUtil.py:11: DeprecationWarning: Call to deprecated function get_sheet_by_name (Use wb[sheetname]).

  3.   self.sheet=self.wb.get_sheet_by_name(sheetName)

  4. tuple(data): (u'\u9093\u80af', u'\u8482\u59c6')

  5. testData: 邓肯

  6. expectData: 蒂姆

  7. 搜索-邓肯,期望-蒂姆

  8. .tuple(data): (u'\u4e54\u4e39', u'\u8fc8\u514b\u5c14')

  9. testData: 乔丹

  10. expectData: 迈克尔

  11. 搜索-乔丹,期望-迈克尔

  12. .tuple(data): (u'\u5e93\u91cc', u'\u65af\u8482\u82ac')

  13. testData: 库里

  14. expectData: 斯蒂芬

  15. 搜索-库里,期望-斯蒂芬

  16. .

  17. ----------------------------------------------------------------------

  18. Ran 3 tests in 45.614s

  19. OK

  20.  

  21. report.log:

  22. Fri,2018-06-29 11:18:S test.py[line:70] INFO 搜索- "邓肯",期望-"蒂姆"-通过

  23. Fri,2018-06-29 11:18:S test.py[line:70] INFO 搜索- "乔丹",期望-"迈克尔"-通过

  24. Fri,2018-06-29 11:18:S test.py[line:70] INFO 搜索- "库里",期望-"斯蒂芬"-通过

如果日志logging部分书写格式有问题、或者路径不存在、或者字符等有问题,日志就会输出到屏幕上,如果没有问题,才会打印到日志文件report.log中

数据驱动excel驱动方式和其他方式(txt等)原理大同小异,都是把数据从文件中取出来,用ddt模块进行解包,传进主程序,难点就是对不同的文件类型进行读取可能需要专门的程序包来处理,说白了,都是对基础的运用进行整合,真正项目中用到的肯定比这个要复杂。。。

总结:

感谢每一个认真阅读我文章的人!!!

作为一位过来人也是希望大家少走一些弯路,如果你不想再体验一次学习时找不到资料,没人解答问题,坚持几天便放弃的感受的话,在这里我给大家分享一些自动化测试的学习资源,希望能给你前进的路上带来帮助。

  视频文档获取方式:
这份文档和视频资料,对于想从事【软件测试】的朋友来说应该是最全面最完整的备战仓库,这个仓库也陪伴我走过了最艰难的路程,希望也能帮助到你!以上均可以分享,点下方小卡片即可自行领取

转载请注明出处或者链接地址:https://www.qianduange.cn//article/14155.html
标签
评论
发布的文章

TEGG学习总结

2024-08-07 00:08:45

ajax笔记二

2024-03-12 01:03:25

jQuery 密码验证

2024-08-07 00:08:10

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!