Python Forum

Full Version: Selenium Webdriver Python — ERR_NO_SUPPORTED_PROXIES
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello everyone! I'm having an issue. When I run the code and the browser launches, the browser gives an error message saying "ERR_NO_SUPPORTED_PROXIES". Can anyone advise on what the issue might be? The proxy data is 100% correct. Thanks everyone.

options = webdriver.ChromeOptions()

chromedriver_path = r'C:\Users\Admin\Desktop\***\chromedriver.exe'
service = Service(executable_path=chromedriver_path)

# proxy
PROXY_HOST = 'fproxy.site'
PROXY_PORT = '1***0'
PROXY_USER = 'X****A'
PROXY_PASS = 'A*********L'
options.add_argument(f'--proxy-server=http://{PROXY_USER}:{PROXY_PASS}@{PROXY_HOST}:{PROXY_PORT}')

# fingerprint
fake = Faker()
fingerprint = fake.chrome()
options.add_argument(f'user-agent={fingerprint}')

# resolution
resolutions = [
(800, 600),
(1024, 768),
(1280, 800),
(1366, 768),
(1440, 900),
(1600, 900),
(1920, 1080)
]
width, height = random.choice(resolutions)
options.add_argument(f"window-size={width},{height}")

# Other
options.add_argument('--disable-notifications')
options.add_argument('--disable-popup-blocking')
options.add_argument('--disable-infobars')
options.add_argument('--disable-blink-features')
options.add_argument('--disable-blink-features=AutomationControlled')
options.add_experimental_option('excludeSwitches', ['enable-automation'])

# Start
driver = webdriver.Chrome(service=service, options=options)