我试图在一个循环中多次打开一个站点以测试不同的凭据是否已过期,以便我可以通知我们的用户。我通过打开数据库、获取记录、调用 chrome 驱动程序打开站点并将值输入到站点来实现这一点。第一个循环有效,但是当下一个循环启动时,驱动程序挂起并最终输出错误:
"unknown error: cannot connect to chrome at 127.0.0.1:XXXX from chrome not reachable"
当已经有一个实例正在运行时,通常会发生此错误。我试图通过在第一个循环完成时同时使用 driver.close() 和 driver.quit() 来防止这种情况,但无济于事。我已经处理了所有其他检测可能性,例如使用代理、不同的用户代理,以及使用https://github.com/ultrafunkamsterdam/undetected-chromedriver的 undetected_chromedriver 。
我要解决的核心问题是能够打开 chrome 驱动程序的实例,关闭它并在同一个执行循环中再次打开它,直到我正在测试的所有凭据都完成。我已经抽象了代码并提供了一个独立的版本来复制这个问题:
# INSTALL CHROMDRIVER USING "pip install undetected-chromedriver"
import undetected_chromedriver.v2 as uc
# Python Libraries
import time
options = uc.ChromeOptions()
options.add_argument('--no-first-run')
driver = uc.Chrome(options=options)
length = 8
count = 0
if count < length:
print("Im outside the loop")
while count < length:
print("This is loop ",count)
time.sleep(2)
with driver:
print("Im inside the loop")
count =+ 1
driver.get("https://google.com")
time.sleep(5)
print("Im at the end of the loop")
driver.quit() # Used to exit the browser, and end the session
# driver.close() # Only closes the window in focus
我建议使用 python virtualenv 来保持包的一致性。我在 Linux 机器上使用 python3.9。任何解决方案、建议或解决方法将不胜感激。