Python 官方文档:入门教程 => 点击学习
(1)安装xlrd pip3 install xlrd (2)示例脚本 import pytest import xlrd def get_data():
(1)安装xlrd pip3 install xlrd
(2)示例脚本
import pytest
import xlrd
def get_data():
filename="F:\\学习\\自动化测试\\selenium自动化测试\\selenium_test\\data\\test.xls"
# 读取工作簿
wb=xlrd.open_workbook(filename)
# 读取第一个sheet页
sheet=wb.sheet_by_index(0)
# 读取行
rows=sheet.nrows
# 读取列
cols=sheet.ncols
lst=[]
for row in range(rows):
for col in range(cols):
#根据行列获得单元格数据
cell_data=sheet.cell_value(row,col)
lst.append(cell_data)
return lst
@pytest.mark.parametrize('name',get_data())
def test1(name):
print(name)
if __name__ == '__main__':
pytest.main(['-sv','test.xls'])
运行结果:
【常见问题】:运行测试脚本报错误。
最终发现原因是最近xlrd更新到了2.0.1版本,只支持.xls文件。
【解决方法】:
(1)脚本中使用xls文件
(2)可以安装旧版xlrd,在cmd中运行:
pip3 uninstall xlrd
pip3 install xlrd==1.2.0
以上来自极客时间课程:selenium自动化测试学习总结
以上就是数据驱动测试DDT之Selenium读取excel文件的详细内容,更多关于DDT驱动测试selenium读取Excel文件的资料请关注编程网其它相关文章!
--结束END--
本文标题: 数据驱动测试DDT之Selenium读取Excel文件
本文链接: https://lsjlt.com/news/157240.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0