如何在python中使用selenium webdriver从excel导入数据。
请求是我已经从excel获取dats并使用python中的selenium webdrive发送到网页中的fileds
答案 0 :(得分:0)
import xlrd
xl_workbook = xlrd.open_workbook('myExcelSheet.xls') #import sheet
xl_sheet = xl_workbook.sheet_by_index(1) #page
col= xl_sheet.col(9) #column you want data from in sheet
您可以从col数组中提取数据并使用它来填充Selenium
字段