码迷,mamicode.com
首页 > 其他好文 > 详细

selenium 设置代理选项

时间:2018-04-16 14:34:46      阅读:2103      评论:0      收藏:0      [点我收藏+]

标签:style   col   man   from   color   manual   127.0.0.1   class   cap   

import random

proxy_list = [ ‘127.0.0.1:proxy:80‘,
               ‘127.0.0.2:proxy:80‘]


# proxy_list = [{‘http‘: ‘https://14.29.47.90:3128‘},]

from selenium import webdriver
chrome_options = webdriver.ChromeOptions()
print(‘--proxy-server={0}‘.format(random.choice(proxy_list)))

chrome_options.add_argument(‘--proxy-server={0}‘.format(random.choice(proxy_list)))
driver = webdriver.Chrome(chrome_options=chrome_options)

driver.get(‘https://www.2345.com/‘)

这样添加选项,执行get后会显示网页无法连接

需要用desired_capabilities添加选项

import random
from selenium import webdriver
proxy_list = [ 127.0.0.1:proxy:80,
               127.0.0.2:proxy:80]

PROXY = --proxy-server={0}.format(random.choice(proxy_list))
print(PROXY)

chrome_options = webdriver.ChromeOptions()
desired_capabilities = chrome_options.to_capabilities()

desired_capabilities[proxy] = {
    "httpProxy":PROXY,
    "noProxy":None,
    "proxyType":"MANUAL",
    "class":"org.openqa.selenium.Proxy",
    "autodetect":False
}


driver = webdriver.Chrome(desired_capabilities=desired_capabilities)

driver.get(https://www.2345.com/)  

 

selenium 设置代理选项

标签:style   col   man   from   color   manual   127.0.0.1   class   cap   

原文地址:https://www.cnblogs.com/wangyufu/p/8855470.html

(0)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!