加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.py 769 Bytes
一键复制 编辑 原始数据 按行查看 历史
py 提交于 2021-12-18 17:32 . 添加联系人
from selenium import webdriver
import tools.readcsv as Csv
import tools.login as Login
import tools.addUser as Au
# 定义一个空数组
users = []
try:
# 读取csv文件
users = Csv.read("./data.csv")
# print(users)
# 避免webdriver检测
options = webdriver.ChromeOptions()
options.add_argument('--disable-blink-features=AutomationControlled')
driver = webdriver.Chrome(options=options)
# 登录模块
Login.login(driver,users,2)
# 验证码
Login.verificationCode(driver)
# 添加联系人模块
Au.addUser(driver)
# 登出/html/body/div[2]/div[7]/div[2]/div[3]/a
Login.logout(driver)
except Exception as e:
print(e)
# 退出浏览器
driver.quit()
pass
else:
pass
finally:
pass
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化