Skip to main content
ubuntuask.com

Back to all posts

How to Use A Proxy In Selenium Python?

Published on
4 min read
How to Use A Proxy In Selenium Python? image

Best Proxy Tools for Selenium Python to Buy in February 2026

1 WEN 23114 1.4-Amp High-Powered Variable Speed Rotary Tool with Cutting Guide, LED Collar, 100+ Accessories, Carrying Case and Flex Shaft

WEN 23114 1.4-Amp High-Powered Variable Speed Rotary Tool with Cutting Guide, LED Collar, 100+ Accessories, Carrying Case and Flex Shaft

  • 40% MORE POWER WITH 1.4-AMP MOTOR FOR VERSATILE TASKS.
  • INCLUDES THREE INNOVATIVE COLLARS FOR ENHANCED FUNCTIONALITY.
  • MULTI-COMPARTMENT CASE NEATLY STORES TOOL, ACCESSORIES, AND MORE.
BUY & SAVE
WEN 23114 1.4-Amp High-Powered Variable Speed Rotary Tool with Cutting Guide, LED Collar, 100+ Accessories, Carrying Case and Flex Shaft
2 Replacement PUF-CO Proxy Part Protectors for Replacement Parts PFC-P Accessories Welding Tips Accessories (white)

Replacement PUF-CO Proxy Part Protectors for Replacement Parts PFC-P Accessories Welding Tips Accessories (white)

  • DURABLE PUF-CO DESIGN ENHANCES WELDING TIP LIFESPAN AND PERFORMANCE.
  • PERFECT FIT FOR PFC-P ACCESSORIES ENSURES SEAMLESS INTEGRATION AND USE.
  • BOOST PRODUCTIVITY WITH RELIABLE REPLACEMENT PARTS FOR WELDING EFFICIENCY.
BUY & SAVE
Replacement PUF-CO Proxy Part Protectors for Replacement Parts PFC-P Accessories Welding Tips Accessories (white)
3 ARTIBETTER 50pcs Interdental Brushes, 3mm Red- Picks for Teeth Cleaning, Proxy Brush, Plaque Remover, Flossers, Portable Oral Hygiene Tools for Adults & Travel

ARTIBETTER 50pcs Interdental Brushes, 3mm Red- Picks for Teeth Cleaning, Proxy Brush, Plaque Remover, Flossers, Portable Oral Hygiene Tools for Adults & Travel

  • SUPERIOR PLAQUE REMOVAL WITH 3MM BRUSHES-BETTER THAN FLOSS!
  • GENTLE, SOFT BRISTLES SAFE FOR GUMS AND BRACES.
  • 50-PACK ENSURES LASTING SUPPLY FOR THE WHOLE FAMILY!
BUY & SAVE
ARTIBETTER 50pcs Interdental Brushes, 3mm Red- Picks for Teeth Cleaning, Proxy Brush, Plaque Remover, Flossers, Portable Oral Hygiene Tools for Adults & Travel
4 Replacement PUF-CO Proxy Part Protectors for Replacement Parts PFC-P Accessories Welding Tips (brown)

Replacement PUF-CO Proxy Part Protectors for Replacement Parts PFC-P Accessories Welding Tips (brown)

  • DURABLE PUF-CO DESIGN ENSURES OPTIMAL PROTECTION FOR WELDING TIPS.
  • EASY INSTALLATION BOOSTS EFFICIENCY AND PROLONGS EQUIPMENT LIFE.
  • COMPATIBLE WITH PFC-P ACCESSORIES FOR SEAMLESS INTEGRATION UPGRADES.
BUY & SAVE
Save 11%
Replacement PUF-CO Proxy Part Protectors for Replacement Parts PFC-P Accessories Welding Tips (brown)
5 Zed Attack Proxy Cookbook: Hacking tactics, techniques, and procedures for testing web applications and APIs

Zed Attack Proxy Cookbook: Hacking tactics, techniques, and procedures for testing web applications and APIs

BUY & SAVE
Save 38%
Zed Attack Proxy Cookbook: Hacking tactics, techniques, and procedures for testing web applications and APIs
6 Mergers, Acquisitions, and Other Restructuring Activities: An Integrated Approach to Process, Tools, Cases, and Solutions

Mergers, Acquisitions, and Other Restructuring Activities: An Integrated Approach to Process, Tools, Cases, and Solutions

BUY & SAVE
Save 5%
Mergers, Acquisitions, and Other Restructuring Activities: An Integrated Approach to Process, Tools, Cases, and Solutions
7 Ladder Stabilizer,Heavy Duty Aluminum Extended Ladder Accessory for Roof Gutter Guard Cleaning Tools,Ladder Stand-Off Wing Span/Wall Ladder Hooks with Non-Slip Rubber Bottom pad.(Patent)

Ladder Stabilizer,Heavy Duty Aluminum Extended Ladder Accessory for Roof Gutter Guard Cleaning Tools,Ladder Stand-Off Wing Span/Wall Ladder Hooks with Non-Slip Rubber Bottom pad.(Patent)

  • PROTECTS WALLS: NON-SLIP RUBBER MAT SAFEGUARDS SURFACES FROM SCRATCHES.

  • LIGHTWEIGHT DESIGN: EASY TO MOVE AND HANDLE, ENHANCING LADDER USABILITY.

  • UNIVERSAL FIT: COMPATIBLE WITH VARIOUS LADDER TYPES FOR VERSATILE USE.

BUY & SAVE
Save 10%
Ladder Stabilizer,Heavy Duty Aluminum Extended Ladder Accessory for Roof Gutter Guard Cleaning Tools,Ladder Stand-Off Wing Span/Wall Ladder Hooks with Non-Slip Rubber Bottom pad.(Patent)
8 Mergers, Acquisitions, and Other Restructuring Activities: An Integrated Approach to Process, Tools, Cases, and Solutions

Mergers, Acquisitions, and Other Restructuring Activities: An Integrated Approach to Process, Tools, Cases, and Solutions

BUY & SAVE
Mergers, Acquisitions, and Other Restructuring Activities: An Integrated Approach to Process, Tools, Cases, and Solutions
9 100+ Free Tools For You To Access Blocked Sites

100+ Free Tools For You To Access Blocked Sites

BUY & SAVE
100+ Free Tools For You To Access Blocked Sites
+
ONE MORE?

To use a proxy in Selenium Python, you can follow the steps mentioned below:

  1. Import the necessary modules: from selenium import webdriver from selenium.webdriver.common.proxy import Proxy, ProxyType
  2. Set up the proxy: proxy = Proxy() proxy.proxy_type = ProxyType.MANUAL proxy.http_proxy = ":" proxy.ssl_proxy = ":" Note: Replace and with the actual proxy server address and port.
  3. Configure the desired capabilities: capabilities = webdriver.DesiredCapabilities.CHROME proxy.add_to_capabilities(capabilities)
  4. Launch the browser with the configured proxy: driver = webdriver.Chrome(desired_capabilities=capabilities) Replace Chrome with the appropriate browser (e.g., Firefox, Edge, etc.) if you are using a different browser.
  5. Proceed with your desired automated browser actions using the driver object.

By following the above steps, you can easily use a proxy with Selenium in Python for browsing with IP anonymity or accessing region-restricted content.

How to bypass proxy settings for local addresses in Selenium Python?

To bypass proxy settings for local addresses in Selenium Python, you can add a proxy capability to your WebDriver instance and exclude the local addresses from the proxy configuration. Here is an example:

from selenium import webdriver from selenium.webdriver.common.proxy import Proxy, ProxyType

Create a new Proxy object

proxy = Proxy()

Set the proxy type to MANUAL

proxy.proxy_type = ProxyType.MANUAL

Add the proxy server address and port

proxy.http_proxy = "127.0.0.1:8080"

Set the desired capabilities with proxy configuration

capabilities = webdriver.DesiredCapabilities.CHROME.copy() proxy.add_to_capabilities(capabilities)

Exclude the local addresses from the proxy configuration

proxy.add_to_capabilities({'proxy': {'noProxy': ''}})

Create a new WebDriver instance with the desired capabilities

driver = webdriver.Chrome(desired_capabilities=capabilities)

Now you can use the WebDriver instance for automation

...

In this example, we create a Proxy object and set its type to MANUAL. Then, we add the proxy server address and port to the proxy object. Next, we create a copy of the CHROME desired capabilities and add the proxy configuration to it using the add_to_capabilities method on the proxy object. Finally, we exclude the local addresses from the proxy configuration by adding {'proxy': {'noProxy': '<local>'}} to the capabilities. This ensures that any local addresses are accessed directly without going through the proxy.

How to use a proxy in Selenium Python?

To use a proxy in Selenium Python, you can follow these steps:

  1. Import the necessary modules:

from selenium import webdriver from selenium.webdriver.common.proxy import Proxy, ProxyType

  1. Create a Proxy object and specify the proxy server address and port:

proxy = Proxy() proxy.proxy_type = ProxyType.MANUAL proxy.http_proxy = "<proxy_server_address>:<proxy_port>" proxy.ssl_proxy = "<proxy_server_address>:<proxy_port>"

Replace <proxy_server_address> and <proxy_port> with the appropriate values.

  1. Create a webdriver.DesiredCapabilities object and set the proxy:

capabilities = webdriver.DesiredCapabilities.CHROME proxy.add_to_capabilities(capabilities)

  1. Instantiate the WebDriver with the capabilities:

driver = webdriver.Chrome(desired_capabilities=capabilities)

Now, Selenium will use the specified proxy for all subsequent browser interactions.

How to use proxies for multi-threaded web scraping in Selenium Python?

To use proxies for multi-threaded web scraping in Selenium Python, follow these steps:

  1. Import the required dependencies:

import threading from selenium import webdriver from selenium.webdriver.chrome.options import Options

  1. Create a function to initialize the Selenium WebDriver instance with proxy settings:

def init_driver(proxy): chrome_options = Options() chrome_options.add_argument('--proxy-server=%s' % proxy) driver = webdriver.Chrome(options=chrome_options) return driver

  1. Create a function to perform the scraping operations on a given thread:

def scrape_with_proxy(proxy): driver = init_driver(proxy)

# Perform scraping operations using the driver instance

driver.quit()
  1. Initialize a list of proxies to be used:

proxies = ['proxy1:port', 'proxy2:port', 'proxy3:port']

  1. Create a list to hold the thread instances:

threads = []

  1. Create and start the threads, passing the proxy from the list to each thread:

for proxy in proxies: thread = threading.Thread(target=scrape_with_proxy, args=(proxy,)) thread.start() threads.append(thread)

  1. Wait for all the threads to complete using the join() method:

for thread in threads: thread.join()

By using this approach, you can perform multi-threaded web scraping with different proxies using Selenium in Python. Each thread will have its own instance of the WebDriver with the specified proxy settings.