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)