如何使用python selenium在弹出窗口中输入用户ID和密码

How to input user id and password in pop ups using python selenium

提问人:Sumanto 提问时间:8/30/2023 最后编辑:Ajeet VermaSumanto 更新时间:8/30/2023 访问量:28

问:

我在访问网站时收到此浏览器弹出窗口。如何在 Python 中使用 Selenium 填写用户名和密码?

我找不到任何解决方案。

python selenium-webdriver 自动化 webautomation

评论


答:

0赞 Mate Mrše 8/30/2023 #1

对于浏览器弹出登录,请尝试在 URL 请求中发送用户名和密码:

url = f"http://{username}:{password}@example.com"
driver.get(url)