为什么打开窗口运行进入百度后会自动退出浏览器 想不明白,也不报错,帮忙看看
我谷歌版本
下载的版本
python3版本 3.11
selenium
我谷歌版本
下载的版本
python3版本 3.11
selenium
试试这样写:
加入 add_experimental_option('detach', True)配置项,设置网页加载完成后不关闭浏览器
settings = webdriver.ChromeOptions()
settings.add_experimental_option('detach', True)
driver=webdriver.Chrome(options = settings)
driver.get("https://www.baidu.com")