我已将本地计算机上的端口 3003 绑定到远程服务器
ssh user@remoteserver -D 3003
在我的 python 脚本中
from selenium import webdriver
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("--proxy-server=http://127.0.0.1:3003")
driver = webdriver.Chrome(chrome_options=chrome_options)
driver.get('http://google.com')
当我运行脚本时,我没有收到任何错误,chrome 启动并且我无法加载 google.com。这个脚本不应该通过 127.0.0.1:3003 发出请求吗?
ssh隧道很好。如果我在浏览器中手动将代理设置为 127.0.0.1:3003,请求会通过我的远程服务器。我在这个脚本中哪里出错了?