是否有任何 python 脚本可以从 selenium python 框架中的 excel 表中读取数据?
我已经写了下面的代码,但我认为它不完全正确
def getcell(行,列):
table=list()
record=list()
for x in range(rows):
for y in range(cols):
record.append(SheetName.cell(x,y).value)
table.append(record)
record=[]
rows=rows+1
return table;
打印(表)