Skip to content

Instantly share code, notes, and snippets.

@yasinkuyu
Last active April 27, 2018 18:23
Show Gist options
  • Save yasinkuyu/3dc53736f1f32e457408e57a258f7af4 to your computer and use it in GitHub Desktop.
Save yasinkuyu/3dc53736f1f32e457408e57a258f7af4 to your computer and use it in GitHub Desktop.
Python Selenium Limunati Proxy Manager
#@yasinkuyu 08/09/2017
# install luminati (https://luminati.io) proxy manager & run
from selenium import webdriver
from selenium.webdriver.common.proxy import Proxy, ProxyType
from selenium.webdriver.chrome.options import Options
PROXY = '127.0.0.1:24000'
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--proxy-server=%s' % PROXY)
driver = webdriver.Chrome(chrome_options=chrome_options)
driver.get("http://www.ipadresimnedir.com/")
@moonzlo
Copy link

moonzlo commented Apr 27, 2018

Please tell me how to use a proxy Socks 4/5

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment