转载请注明作者和出处:美二 https://blog.csdn.net/qq_32654897/article/details/88579713
一、背景说明
在自动化项目中,有时候测试用例会放在excel文件中的,因此如何用代码读取excel中的内容是必须要做的一部分。本文会从框架思路来展示如何完成。
二、分析思路
我们需要做的其实就是这几个部分
三、代码实现
1. 获取excel文件路径,我们这里指的是相对路径,更具有灵活性 <setting.py>
file_path = os.path.abspath(__file__)
DIR_NAME = os.path.dirname(file_path)
2. 获取excel文件中sheet_name <get_sheetname.py>
xlsx = pandas.ExcelFile(file_path)
sheet_names = xlsx.sheet_names
3. 读取excel中的内容 <get_readexcel.py>
res = pandas.read_excel(file_name, sheet_name, engine='openpyxl')
n_rows = res.shape[0]
n_cols = res.columns.size
data = []
for row in range(0, n_rows):
lines = []
for col in range(0, n_cols):
text = res.iloc[row, col]
lines.append(text)
data.append(lines)
四、框架图示
|