ERR_TUNNEL_CONNECTION_FAILED

在运行以下代码是发生报错ERR_TUNNEL_CONNECTION_FAILED

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
options = Options()
options.add_argument('--proxy-server=http://127.0.0.1:8080')
driver = webdriver.Chrome(options=options)
url = 'https://youtube.com/'
driver.get(url)

照着https://blog.csdn.net/qq_39377418/article/details/103845118的第五步写的,其他端口试过了没有用

https://blog.csdn.net/trieyouth/article/details/46440889?ops_request_misc=&request_id=&biz_id=102&utm_term=ERR_TUNNEL_CONNECTION_FAILED&utm_medium=distribute.pc_search_result.none-task-blog-2~all~sobaiduweb~default-9-.pc_search_result_before_js&spm=1018.2226.3001.4187

这种方法也试过了没有用

怎么解决的