python 获取excel数据 自动登陆
程序员文章站
2022-12-17 08:37:14
import xlrdimport timeimport unittestfrom selenium import webdriverclass u8819(unittest.TestCase): global loginurl global driverpath loginurl = 'http: ......
import xlrd
import time
import unittest
from selenium import webdriver
class u8819(unittest.testcase):
global loginurl
global driverpath
loginurl = 'http://www.effevo.com'
driverpath = 'd:\\chromedriver.exe'
userpath = 'd:\\data.xlsx'
#获取data.xlsx中的用户数据(用户名密码)
def open_excel(self, file = userpath, rownameindex = 0, table = '用户表'):
try:
self.data = xlrd.open_workbook(file)
self.table = self.data.sheet_by_name(table)
self.colnames = self.table.row_values(rownameindex) #找到列名 默认第一行为列名
self.nrows = self.table.nrows
for rownum in range(1, self.nrows):
rowvalue = self.table.row_values(rownum)
list = []
if rowvalue:
user = {}
for i in range(len(rowvalue)):
user[self.colnames[i]] = rowvalue[i]
list.append(user)
print(list)
return list
except exception:
print('文件未发现:' + file)
#获取excel的用户名密码登陆
def login(self):
listdata = self.open_excel()
#if(len(listdata) < 0 ):
# assert 0, u"excel数据异常:无数据"
for i in range(len(listdata)):
self.driver = webdriver.chrome(driverpath)
self.driver.get(loginurl)
assert "工作云" in self.driver.title
self.driver.find_element_by_xpath(".//*[@id='home']/div/div[2]/header/nav/div[3]/ul/li[1]/a").click()
time.sleep(5)
self.driver.find_element_by_xpath(".//*[@id='passname']").clear()
self.driver.find_element_by_xpath(".//*[@id='passname']").send_keys(str(listdata[i]['username']))
self.driver.find_element_by_xpath(".//*[@id='password']").clear()
self.driver.find_element_by_xpath(".//*[@id='password']").send_keys(listdata[i]['password'])
self.driver.find_element_by_xpath(".//*[@id='content']/div/div[6]/input").click()
a = u8819()
a.login()
if __name__ == '__main__':
unittest.main()
来源:https://www.cnblogs.com/insane-mr-li/p/9093212.html
上一篇: 你问北方有多冷?来看看怕不怕鬼都活不了
推荐阅读
-
python数据库操作常用功能使用详解(创建表/插入数据/获取数据)
-
Python和Excel表格之间不得不说的故事,我有模块,你有数据嘛?
-
python对Excel数据进行读写操作
-
Excel2007中如何运用自动求和功能快速求出数据的总和
-
Excel MODE.MULT函数获取一组数值中出现频率最多的数据
-
基于Python3的接口自动化总结(六)——PostgreSQL数据库
-
Excel表格数据导入数据库users表中,利用excel公式自动生成sql语句方法
-
利用python对Excel中的特定数据提取并写入新表的方法
-
python中将字典形式的数据循环插入Excel
-
python读取excel指定列数据并写入到新的excel方法