0

我试图在一个循环中多次打开一个站点以测试不同的凭据是否已过期,以便我可以通知我们的用户。我通过打开数据库、获取记录、调用 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。任何解决方案、建议或解决方法将不胜感激。

4

1 回答 1

0

您正在循环中退出驱动程序,然后尝试访问不再存在的执行程序地址,因此您的错误。您需要通过在循环中向下移动驱动程序来重新初始化驱动程序,在 while 语句之前。

from multiprocessing import Process, freeze_support
import undetected_chromedriver as uc

# Python Libraries
import time

chroptions = uc.ChromeOptions()

chroptions.add_argument('--no-first-run enable_console_log = True')
# driver = uc.Chrome(options=chroptions)

length = 8
count = 0
if count < length:
    print("Im outside the loop")
    while count < length:
        print("This is loop ",count)
        driver = uc.Chrome(options=chroptions)
        time.sleep(2)
        with driver:
            print("Im inside the loop")
            count =+ 1
            driver.get("https://google.com")
            print("Session ID: ", end='')  #added to show your session ID is changing
            print(driver.session_id)
            driver.quit()   
于 2021-11-30T21:48:39.403 回答