Created
September 8, 2017 14:07
-
-
Save yasinkuyu/eea292dbd848a6246391535e35a7548b to your computer and use it in GitHub Desktop.
Python Selenium Luminati Proxy Desired Capabilities (Exclude localhost)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#@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 | |
from selenium.webdriver.common.proxy import * | |
PROXY = '127.0.0.1:24000' | |
proxy = Proxy() | |
proxy.http_proxy = PROXY | |
proxy.ftp_proxy = PROXY | |
proxy.sslProxy = PROXY | |
proxy.no_proxy = "localhost" #etc... ;) | |
proxy.proxy_type = ProxyType.MANUAL | |
#limunati customer info | |
proxy.socksUsername = 'lum-customer-XXXX-zone-XXXX' | |
proxy.socksPassword = "XXXX" | |
capabilities = webdriver.DesiredCapabilities.CHROME | |
proxy.add_to_capabilities(capabilities) | |
driver = webdriver.Chrome(desired_capabilities=capabilities) | |
driver.get("http://ipadresimnedir.com") |
it is asking username and password ;/
same... it is asking username and password...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you should use luminati super proxy for this value.
change
PROXY = '127.0.0.1:24000'
toPROXY = 'zproxy.lum-superproxy.io:22225'