ultrafunkamsterdam / undetected-chromedriver

Custom Selenium Chromedriver | Zero-Config | Passes ALL bot mitigation systems (like Distil / Imperva/ Datadadome / CloudFlare IUAM)
https://github.com/UltrafunkAmsterdam/undetected-chromedriver
GNU General Public License v3.0
9.23k stars 1.1k forks source link

NoDriver Proxy support? #1859

Open spectreDeveloper opened 2 months ago

spectreDeveloper commented 2 months ago

hI GUYS there is a way to set proxy http/s to no_driver? i need to prox more than 1 instance with different proxies.

thx

raunaqss commented 2 months ago

Check discussion there is an answer there.

max32002 commented 2 months ago

browser_args = [] browser_args.append('--proxy-server=%s' % "your-proxy-string-here") conf = Config(browser_args=browser_args)

ghj1976 commented 2 months ago

chromium doesn't support socks5 auth but support http(s) auth. You only can use --proxy-server=socks5://ip:port

https://github.com/puppeteer/puppeteer/issues/1074