1. excle传参:
先下载第三方库xlrd
import xlrd
data= xlrd.open_workbook(r"C:\Users\30833\Desktop\自动化测试\data.xlsx") #打开excle文件,注意excle里的数据要用文本格式。
table=data.sheet_by_name("login") #选择sheet,可以用sheet名,也可以用sheet的index:by_index(0)
e_list= []
for n_row in range(1,table.nrows): #table.nrows列表行数
e_list.append(table.row_values(n_row)) #组合成列表,table.row_values(n_row)表示整行取值
print(e_list)
自动化脚本使用实例:
2. csv传参:
import ddt
import csv
f= open(r'data/login.csv','r')
li= list(csv.reader(f))[1:]
print (li)
自动化脚本使用实例:
3. txt传参:
with open(r'E:\\1.txt','r') as f:
list1=f.readlines()