[转]python +浏览器 爬虫时 没完成任务自动关闭问题

原文链接:https://www.cnblogs.com/lizm166/p/13180924.html

python+selenium自动化,没有写close和quit,浏览器窗口会自动关闭解决方案

 

#增加参数
option.add_experimental_option("detach", True)

 

例如:

复制代码
  #加启动配置
    option = webdriver.ChromeOptions()
    #关闭“chrome正受到自动测试软件的控制”
    #V75以及以下版本
    #option.add_argument('disable-infobars')
    #V76以及以上版本
    option.add_experimental_option('useAutomationExtension', False)
    option.add_experimental_option('excludeSwitches', ['enable-automation'])
    #不自动关闭浏览器
    option.add_experimental_option("detach", True)
    # 打开chrome浏览器
    driver = webdriver.Chrome(chrome_options=option)
    
复制代码

 

 

posted on 2020-11-01 21:32  不知所以随风飘动  阅读(555)  评论(0编辑  收藏  举报

导航