python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > selenium打开浏览器后秒关闭

python用selenium打开浏览器后秒关闭浏览器的解决办法

作者:无糖饮料就一定无糖吗

最近朋友在学Selenium的时候遇到一个问题,当执行完selenium程序后,浏览器会闪退也就是自动关闭,这篇文章主要给大家介绍了关于python用selenium打开浏览器后秒关闭浏览器的解决办法,需要的朋友可以参考下

学习selenium的时候,上手第一个脚本发现成功打开浏览器后,代码执行完毕浏览器又秒关闭了,代码如下:

from  selenium import webdriver
 
driver = webdriver.Chrome()
driver.get("https://www.baidu.com")

1、检查代码,代码中没有写driver.quit()或driver.close()方法,也没有其它错误提示;

2、检查版本号,浏览器版本号112.0.5615.121,驱动版本号112.0.5615.49,确认版本号没有问题;

3、最后找到解决方法,如下:

from selenium import webdriver
 
options = webdriver.ChromeOptions()
options.add_experimental_option('detach', True)
 
driver = webdriver.Chrome(options=options)
driver.get('http://www.baidu.com')

python selenium默认情况下,执行完代码逻辑后,浏览器也会自动关闭,上述代码可以避免浏览器自动关闭。

另一种更简便的写法:

from selenium.webdriver import Chrome
from selenium.webdriver.chrome.options import Options
 
opt = Options()
opt.add_experimental_option('detach', True)
# 通过option参数,设置浏览器不关闭
web = Chrome(options=opt)
web.get("https://www.lagou.com/")

总结

到此这篇关于python用selenium打开浏览器后秒关闭浏览器的解决办法的文章就介绍到这了,更多相关selenium打开浏览器后秒关闭内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文