我正在尝试在undetected_webdriver
模块中使用代理,但它不起作用。之前selenium
使用以下方法对我有用:
webdriver.DesiredCapabilities.CHROME['proxy'] = {
"httpProxy": self.proxy,
"ftpProxy": self.proxy,
"sslProxy": self.proxy,
"noProxy": None,
"proxyType": "MANUAL",
"class": "org.openqa.selenium.Proxy",
"autodetect": False
}
当我尝试这个undetected_webdriver
并查看网站whatismyip我的 ip 仍然相同。我去Proxy
上课了,问题还是一样。
有没有办法让它发生undetected_webdriver
?