Smartproxy / Selenium-proxy-authentication

Example of username and password proxy authentication for use in Selenium
https://smartproxy.com/
MIT License
65 stars 13 forks source link
automation-scripts browser-automation headless-browser http-proxy network-automation proxy proxy-authentication proxy-management proxy-server python selenium selenium-python selenium-webdriver web-scraping

Username and password proxy authentication with Selenium Chrome

To authenticate proxies with username and password on Selenium, the most common approach on various programming languages is to write a custom extension which would handle the proxy connection. Such an extension is shown in extension.py example.

The proxies function in the provided extension.py file can be imported and easily used in any project as given in the main.py example. The function expects 4 values: username, password, endpoint and port.

proxies_extension = proxies(username, password, endpoint, port)

The extension is then added using the add_extension method:

chrome_options.add_extension(proxies_extension)

This example can be easily adapted for use in other programming languages as well as supported webdrivers.