i was building a code to do something in selenium i have to connect to proxy to make it work i have some resendetial proxies but when i tried them on selenium it shows an error i have tried various drivers too
i have used the following codes:
proxy_url = f"{proxy_username}:{proxy_password}@{proxy_address}:{proxy_port}"
options = Options()
options.add_argument('--proxy-server=http://%s' % proxy_url)
driver = webdriver.Chrome(options=options)
driver.get('https://idk.me')
print(driver.page_source)
time.sleep(50)
driver.quit()
when using this i get:"This site can’t be reached The web page at https://idk.me might be temporarily down or it may have moved permanently to a new web address. ERR_NO_SUPPORTED_PROXIES i also tried with firefox but the user and pass authentication keeped popping up