gpt4 book ai didi

Python Selenium - 类似身份验证的警报弹出窗口

转载 作者:行者123 更新时间:2023-12-05 03:31:54 26 4
gpt4 key购买 nike

嘿 Brilliant Stack 溢出社区,

我遇到了一个有趣的场景,涉及处理弹出用户身份验证框等警报。

1:使用的网站(练习网站): https://the-internet.herokuapp.com/

2:当我点击进入Basic Auth时,出现了一个类似弹出窗口的警告(见下文)。 enter image description here

3:到目前为止我尝试了什么。

from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions

chrome_path = '.\chromedriver.exe'
chrome_service = Service(chrome_path)
chrome = webdriver.Chrome(service=chrome_service)
chrome.maximize_window()
chrome.get('https://the-internet.herokuapp.com/')
basic_auth = WebDriverWait(chrome,timeout=30).until(expected_conditions.element_to_be_clickable((By.PARTIAL_LINK_TEXT,'Basic Auth')))
basic_auth.click()

3-1:将其视为警报(switch_to.alert)并使用发送键插入用户名和密码。但是得到了 NoAlertPresentException。

chrome.switch_to.alert.send_keys('user\npass')
# get selenium.common.exceptions.NoAlertPresentException

3-2:将其视为事件元素并使用发送键。这次没有错误,但也没有任何内容发送到输入框。在我看来,这个弹出窗口不能成为一个元素。

chrome.switch_to.active_element.send_keys('user\npass')
# No error msg, but nothing show up in the pop up input field too.

3-3: 将其视为一个新窗口,但在检查有多少个窗口处于事件状态时(driver.window_handles),只有一个窗口。所以这个弹出窗口也不是窗口。

print(len(chrome.window_handles)) # return 1, so the pop up is not a window too

3-4:我偶然发现了这篇文章,但我不确定我是否理解解决方案。 Python Selenium Alert Authentication Trouble

如果有人可以帮助我了解如何在像这样的非 Web 元素中导航,我会很棒。

非常感谢!

=======

问题更新

非常感谢@Tyzeron 和@Nic Laforge 的帮助!

帖子中提到的两种方法我都试过了,请问我做的对不对?

仅供引用:该网站本身是一个练习网站,因此每次您输入用户名和密码然后登录时,该网站都会生成一个新的基本身份验证弹出窗口。很难判断我尝试的方法是否有效。

方法一:在使用get方法时将Basic Authentication放在URL中。

chrome_path = '.\chromedriver.exe'
chrome_service = Service(chrome_path)
chrome = webdriver.Chrome(service=chrome_service)
chrome.maximize_window()
chrome.get('https://username:pwd123@the-internet.herokuapp.com/basic_auth')

方法二:使用Selenium Wire(我不确定我的代码是否正确)

from seleniumwire import webdriver as wire_driver
import base64

def request_interceptor(req):
# add Authentication Here.
# VXNlck5hbWU6UHNkMTIz is the base64 encoded str for "UserName:Psd123"
req.headers['Authorization'] = 'Basic VXNlck5hbWU6UHNkMTIz=='
print(req.headers)

chrome_path = '.\chromedriver.exe'
chrome_service = Service(chrome_path)
chrome = wire_driver.Chrome(service=chrome_service)
chrome.maximize_window()
chrome.request_interceptor = request_interceptor
chrome.get('https://the-internet.herokuapp.com/basic_auth')

selenium-wire 的第二种方法也没有产生错误,但页面上没有可见的线索表明成功与否。

此外,函数中req对象的打印结果如下: enter image description here

现在,这两种方法都没有生成错误,也没有可见的线索表明代码成功。所以我想知道如何判断它是否有效?

最佳答案

无法“找到”元素的原因

警告框不是 HTML 元素。它不是网页的一部分,因此您无法在 HTML 代码中看到它。警告框是浏览器的一部分。

一些上下文

您看到的是 Basic access authentication 的示例.正如 wiki 所述,通常会发生的情况是您的应用程序/浏览器通过请求中的 header 字段(Authorization header )自动提供用户名和密码。在这种情况下,您的浏览器还不知道用户名和密码,因此它会通过浏览器的警告框询问用户名和密码。

我提出的解决方案

我相信使用 selenium 进行身份验证的最干净、最简单的方法是在您的 get 方法期间提供凭证,如下所示:

chrome.get('http://username:password@domain')

在您的特定情况下,它将是 http://admin:admin@the-internet.herokuapp.com/basic_auth

但是,正如@Nic-Laforge 所提到的,此解决方案取决于浏览器是否支持它这一事实。 (截至撰写本文时,最新的 Chrome 支持它)

其他 StackOverflow 帖子的解决方案

与我提出的解决方案不同,similar StackOverflow post 中提出的两种解决方案需要额外的库。

@Evander 先生提出的第一个解决方案是使用pynput 库来模拟键盘输入。该解决方案要求用户使用非 headless 浏览器,使浏览器聚焦,并且在输入过程中不与键盘交互。

第二种解决方案要好得多。如上所述,Basic access authentication需要请求中 Authorization header 中的凭据。 @Evander 先生所做的是使用 selenium-wire 库拦截 selenium 的请求并添加带有凭据的 header 。

关于Python Selenium - 类似身份验证的警报弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70558947/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com