Answer the question
In order to leave comments, you need to log in
How to use proxy with password in Selenium?
How can I use a proxy with a password and login?
I use proxy like this
options.AddArguments("--proxy-server=http://Тут прокси мои");
Answer the question
In order to leave comments, you need to log in
Only use seleniumwire, in fact the same as selenium but improved.
from seleniumwire import webdriver
proxies = 'http://myusername:[email protected]:123456'
options = {
'proxy': {
'http': proxies,
'https': proxies
}
}
chrome_options = webdriver.ChromeOptions()
driver = webdriver.Chrome('chromedriver', options=chrome_options,seleniumwire_options=options)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question