Skip to content
Discussion options

You must be logged in to vote

I had the same problem and I solved it like this with python:

from selenium.webdriver.common.proxy import Proxy, ProxyType
from selenium import webdriver
import undetected_chromedriver as uc 

proxy = Proxy()
proxy.proxy_type = ProxyType.MANUAL
proxy.http_proxy = "username:password@ip:port"
proxy.ssl_proxy = "username:password@ip:prt"
capabilities = webdriver.DesiredCapabilities.CHROME.copy()
proxy.add_to_capabilities(capabilities)

driver = uc.Chrome(use_subprocess=True, desired_capabilities=capabilities)

Replies: 2 comments 9 replies

Comment options

You must be logged in to vote
8 replies
@silverxd20
Comment options

@Noodles0x00
Comment options

@BRKind
Comment options

@Naikasinji93
Comment options

@lynnwho12
Comment options

Answer selected by lukebelkis
Comment options

You must be logged in to vote
1 reply
@dxdate
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
9 participants