我使用的是Ubuntu Server 17.04。
我试图将我的代理设置为selenium。但它不起作用。我正在使用https://stormproxies.com/的代理。基本上只有ip我允许它才能拥有代理,然后我必须使用他们给我访问它的ip。所以基本上它不是这个“ip:port @ user:pass”。假设这是我正在使用的代理ip
示例:https://123.123.123.123:13028
代理工作正常...因为我在scrapy中使用它。
但是没有在selenium工作..我已经尝试了我发现的所有例子,它给了我各种错误。我的想法是因为这些例子已经过时了......也许吧。
我的硒和一切都是最新的。我有geckodriver设置路径...和一切。如果我不添加代理,Selenium工作正常。
这些是我用于所有人的主要进口产品。
from selenium import webdriver
from selenium.webdriver.common.proxy import *
from pyvirtualdisplay import Display
这些都是我尝试过的脚本。
第一个示例它没有给我任何错误,但它没有连接到代理。当我试图在“https://whatismyipaddress.com”中获取ip时,我得到了我真正的ip,而不是代理
display = Display(visible=0, size=(1920, 1080)).start()
myProxy = "https://123.123.123.123:13028"
proxy = Proxy({
'proxyType': ProxyType.MANUAL,
'httpProxy': myProxy,
'ftpProxy': myProxy,
'sslProxy': myProxy,
'noProxy': None
})
browser = webdriver.Firefox()
browser.get("https://whatismyipaddress.com/")
第二个例子 - 它给了我这个错误:WebDriverException:消息:进程意外关闭状态:1
proxies = "123.123.123.123:13028"
prox = Proxy()
prox.proxy_type = ProxyType.MANUAL
prox.http_proxy = proxies
prox.socks_proxy = proxies
prox.ssl_proxy = proxies
capabilities = webdriver.DesiredCapabilities.FIREFOX
prox.add_to_capabilities(capabilities)
driver = webdriver.Firefox(capabilities=capabilities)
第三个例子 - 它给了我这个错误:WebDriverException:消息:进程意外关闭状态:1
PROXY_PORT = '13028'
PROXY_HOST = '123.123.123.123'
fp = webdriver.FirefoxProfile()
print PROXY_PORT
print PROXY_HOST
fp.set_preference("network.proxy.type", 1)
fp.set_preference("network.proxy.http", PROXY_HOST)
fp.set_preference("network.proxy.http_port", int(PROXY_PORT))
fp.set_preference("network.proxy.https", PROXY_HOST)
fp.set_preference("network.proxy.https_port", int(PROXY_PORT))
fp.set_preference("network.proxy.ssl", PROXY_HOST)
fp.set_preference("network.proxy.ssl_port", int(PROXY_PORT))
fp.set_preference("network.proxy.ftp", PROXY_HOST)
fp.set_preference("network.proxy.ftp_port", int(PROXY_PORT))
fp.set_preference("network.proxy.socks", PROXY_HOST)
fp.set_preference("network.proxy.socks_port", int(PROXY_PORT))
fp.set_preference("general.useragent.override",
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A")
fp.update_preferences()
driver = webdriver.Firefox(firefox_profile=fp)
第四个例子 - 它给了我这个错误:InvalidArgumentException:Message:null不是一个数组
PROXY = "123.123.123.123:13028"
webdriver.DesiredCapabilities.FIREFOX['proxy'] = {
"httpProxy": PROXY,
"ftpProxy": PROXY,
"sslProxy": PROXY,
"noProxy": None,
"proxyType": "MANUAL",
}
driver = webdriver.Firefox()
driver.get('http://www.whatsmyip.org/')
我也用这个例子:
第五个例子 - 它给了我这个错误:WebDriverException:消息:进程意外关闭状态:1
ProxyHost = "123.123.123.123"
ProxyPort = "13028"
def ChangeProxy(ProxyHost, ProxyPort):
"Define Firefox Profile with you ProxyHost and ProxyPort"
profile = webdriver.FirefoxProfile()
profile.set_preference("network.proxy.type", 1)
profile.set_preference("network.proxy.http", ProxyHost)
profile.set_preference("network.proxy.http_port", int(ProxyPort))
profile.update_preferences()
return webdriver.Firefox(firefox_profile=profile)
def FixProxy():
# ""Reset Firefox Profile""
profile = webdriver.FirefoxProfile()
profile.set_preference("network.proxy.type", 0)
return webdriver.Firefox(firefox_profile=profile)
driver = ChangeProxy(ProxyHost, ProxyPort)
driver.get("http://whatismyipaddress.com")
time.sleep(5)
driver = FixProxy()
driver.get("http://whatismyipaddress.com")
您只需要在初始化时将firefox_options元素添加到驱动程序中。
确保正确导入代理端(显然)
from selenium.webdriver.common.proxy import Proxy, ProxyType
然后像这样初始化你的驱动程序
options = Options()
options.add_argument("--headless")
ProxyHost = "x.x.x.x"
ProxyPort = "8118"
def SetProxy(ProxyHost ,ProxyPort):
profile = webdriver.FirefoxProfile()
profile.set_preference("network.proxy.type", 1)
profile.set_preference("network.proxy.http", ProxyHost )
profile.set_preference("network.proxy.http_port", int(ProxyPort))
profile.update_preferences()
return webdriver.Firefox(firefox_profile=profile, firefox_options=options)
try:
driver = SetProxy(ProxyHost ,ProxyPort)
driver.get("http://x.x.x.x")
print(driver.page_source)
driver.close()
except:
traceback.print_exc()
driver.close()