为了账号安全,请及时绑定邮箱和手机立即绑定

从文本文件 pwd email 中读取

从文本文件 pwd email 中读取

千巷猫影 2023-06-27 14:35:31
现在我的代码是email = 'test@gmail.com'pwd = 'testing123' user.send_keys(email)user.send_keys(pwd)现在我想从文本文件中读取电子邮件和密码,这是代码上的。假设我在尝试使用 f 打开的同一文件夹中有一个 info.txt 但它不起作用,我完全迷失了 email = 'test@gmail.com'pwd = 'testing123' msg = 'testy123' driver = webdriver.Chrome('chromedriver.exe', options=options) driver.get('https://www.randomsite.com')print ("Logging in and doing requests.") user =  driver.find_element_by_id('login_email')user.send_keys(email)  password = driver.find_element_by_id('login_password')password.send_keys(pwd) 
查看完整描述

1 回答

?
梦里花落0921

TA贡献1772条经验 获得超6个赞

我认为你可以使用读取文件open("info.txt","r")


然后附加 email 和 pwd 变量。阅读文件后,您可以使用 split 来分隔单词。


f = open("info.txt","r")

x = f.read().split("\n")

f.close()

email = x[0]

passwd = x[1]

print(email,passwd)


查看完整回答
反对 回复 2023-06-27
  • 1 回答
  • 0 关注
  • 90 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信