I want to write a Python script using Selenium and Chrome where Selenium won t close the Chrome browser when the script finishes. From doing a bunch of googling, it looks like the standard solution is to use the detach option. But when I run the following script:
import selenium
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
chrome_options = Options()
chrome_options.add_experimental_option("detach", True)
driver = webdriver.Chrome(options=chrome_options)
driver.get("https://www.google.com/")
它打开了 Chrome,进入谷歌主页,然后关闭浏览器。 它不犯任何错误。
它为什么不发挥作用? I m使用最新版本的谷歌 Chrome窗10, 而I ve是安装的 se模块的最新版本。 我在网上找不到任何东西,说实验性脱节选择不再存在。 我对进行了双重检查。