#循环读取csv文件中的数据,可以作为用户名,密码等使用from selenium import webdriverimport csv#获取csv文件中password列with open(r'C:\bbs\data\logindata.csv','r',encoding='utf-8') as csvfile: text=csv.DictReader(csvfile) pwd=[row['password'] for row in text]#获取csv文件中username列w…
数据驱动txt文件驱动的方式,带报告 data.txt: gloryroad test||光荣之路 摔跤爸爸||阿米尔 超人||电影 data_driven_by_txt_file.py: #encoding=utf-8 from selenium import webdriver import time with open(u"e:\\数据驱动\\data.txt") as fp: data=fp.readlines() driver=webdriver.Ie(executable_…