selenium 当我启动我的程序(Selify)时,它打开网页,然后在日志中没有错误的情况下立即关闭

axzmvihb  于 2022-11-10  发布在  其他
关注(0)|答案(1)|浏览(110)

我的代码很短。当我尝试它时,程序打开了网页,但程序随后立即关闭。

from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException

driver = webdriver.Chrome()
driver.get("https://google.com")

我认为问题出在我的环境中,所以我没有尝试对代码进行任何更改来解决这个问题。

o8x7eapl

o8x7eapl1#

您必须添加以下铬合金选项:

from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.chrome.options import Options

options = Options()
options.add_experimental_option("detach", True)
driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install()), options=options)
driver.get("https://google.com")

相关问题