ericxieforever 2020-06-21
Python使用第三方库xlrd读取Excel
接口自动化测试中,数据和代码分离才能逻辑更清晰,所以用excel管理用例数据比较方便
一、安装xlrd
pip install xlrd
二、使用命令
#coding=utf-8import xlrdwb=xlrd.open_workbook("test_user_data.xls") #打开excelsh=wb.sheet_by_name("TestUserLogin") #按表格名称获取表格print(sh.nrows) #获取有效的数据行数print(sh.ncols) #获取有效的数据列数print(sh.cell(0,0).value) #获取单元格值print(sh.row_values(0)) #获取第一行数据print(dict(zip(sh.row_values(0),sh.row_values(1)))) #将表头和数据整理成字典for i in range(1,sh.nrows): zipdata=dict(zip(sh.row_values(0),sh.row_values(i)))print zipdata