硒关闭我的Chrom窗口,没有错误消息

时间:2019-10-04 16:41:23

标签: python selenium google-chrome selenium-webdriver google-chrome-devtools

嗨,

我的问题是:

当我启动代码时,它会打开一个窗口,然后打开另一个窗口,依此类推。在4个Windows窗口之后,所有4个窗口之间都关闭了一段时间,稍有延迟,然后程序就好像没有发生任何事情一样,打开了一个新窗口,然后又打开了一个新的窗口,依此类推,直到5个窗口全部关闭,这一切一直进行到最后。

背景信息:

  • 带有Selenium的最新Python版本

  • Google Chrome浏览器

  • 我没有收到任何错误消息

    browser = webdriver.Chrome(driverPlace)
    browser.get(url)
    time.sleep(0.5)
    browser.maximize_window()
    time.sleep(0.5)


def startCheckLogins():
    x = 0
    stay_active = True
    with open(filePlace) as file:
        for x, line in enumerate(file):
            x + 1
            login()

    while stay_active:
        stop = input("Choice: ")
        if stop in ["quit", "q", "exit"]:
            stay_active = False


#program start message
startCheckLogins()

0 个答案:

没有答案