0


解决Python selenium打开浏览器自动退出

刚学selenium,在网上复制了启动浏览器的代码,结果打开Chrome浏览器跳转网页后,浏览器自动退出了,可是并没有调用quit(),查了下解决方案,说是降版本,不想降,所以找了其他方法:

设置启动参数即可,驱动过程结束后保持浏览器的打开状态:

options.add_experimental_option("detach", True)

from selenium import webdriver

options = webdriver.ChromeOptions()
#驱动过程结束后保持浏览器的打开状态
options.add_experimental_option("detach", True)
driver = webdriver.Chrome(options=options)
url = 'https://www.csdn.net/'
driver.get(url)
# driver.quit()

想要关闭直接调用 quit()

标签: python selenium

本文转载自: https://blog.csdn.net/y3168002421/article/details/132598688
版权归原作者 天空不蓝sky 所有, 如有侵权,请联系我们删除。

“解决Python selenium打开浏览器自动退出”的评论:

还没有评论