如何在python中使用selenium webdriver从excel导入数据

时间:2018-06-11 09:31:18

标签: python excel selenium

如何在python中使用selenium webdriver从excel导入数据。

请求是我已经从excel获取dats并使用python中的selenium webdrive发送到网页中的fileds

1 个答案:

答案 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

字段