Loading

DeprecationWarning: use options instead of chrome_options

使用 python  selenium,但当我运行时候出现:DeprecationWarning: use options instead of chrome_options  driver = webdriver.Chrome(chrome_options=option)

这只是一个警告,并不会影响程序运行,如果实在要解决,可以替换为下面这种方式。

报这个警告的原因是在新版本中,这种写法已经被弃用了。

  解决办法:

#!/usr/bin/python
# -*- coding: UTF-8 -*-
"""
@author: Roc-xb
"""
from selenium import webdriver
from selenium.webdriver.chrome.options import Options

if __name__ == '__main__':
    chrome_options = Options()
    chrome_options.add_argument('--headless')
    driver = webdriver.Chrome(options=chrome_options)

posted @ 2022-04-05 09:00  Roc-xb  阅读(13)  评论(0编辑  收藏  举报

易微帮源码


易微帮官网