温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Selenium chrome如何配置代理Python版

发布时间:2021-08-13 09:32:39 来源:亿速云 阅读:145 作者:小新 栏目:开发技术

这篇文章主要介绍Selenium chrome如何配置代理Python版,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

环境: windows 7 + Python 3.5.2 + Selenium 3.4.2 + Chrome Driver 2.29 + Chrome 58.0.3029.110 (64-bit)

Selenium官方给的Firefox代理配置方式并不起效,也没看到合适的配置方式,对于Chrome Selenium官方没有告知如何配置,但以下两种方式是有效的:

1. 连接无用户名密码认证的代理

chromeOptions = webdriver.ChromeOptions() chromeOptions.add_argument('--proxy-server=http://ip:port')  driver = webdriver.Chrome(chrome_options=chromeOptions)

2. 有用户名和密码的连接

from selenium import webdriverdef create_proxyauth_extension(proxy_host, proxy_port,                 proxy_username, proxy_password,                 scheme='http', plugin_path=None):   """Proxy Auth Extension   args:     proxy_host (str): domain or ip address, ie proxy.domain.com     proxy_port (int): port     proxy_username (str): auth username     proxy_password (str): auth password   kwargs:     scheme (str): proxy scheme, default http     plugin_path (str): absolute path of the extension       return str -> plugin_path   """   import string   import zipfile   if plugin_path is None:     plugin_path = 'd:/webdriver/vimm_chrome_proxyauth_plugin.zip'   manifest_json = """   {     "version": "1.0.0",     "manifest_version": 2,     "name": "Chrome Proxy",     "permissions": [       "proxy",       "tabs",       "unlimitedStorage",       "storage",       "<all_urls>",       "webRequest",       "webRequestBlocking"     ],     "background": {       "scripts": ["background.js"]     },     "minimum_chrome_version":"22.0.0"   }   """   background_js = string.Template(   """   var config = {       mode: "fixed_servers",       rules: {        singleProxy: {         scheme: "${scheme}",         host: "${host}",         port: parseInt(${port})        },        bypassList: ["foobar.com"]       }      };   chrome.proxy.settings.set({value: config, scope: "regular"}, function() {});   function callbackFn(details) {     return {       authCredentials: {         username: "${username}",         password: "${password}"       }     };   }   chrome.webRequest.onAuthRequired.addListener(         callbackFn,         {urls: ["<all_urls>"]},         ['blocking']   );   """   ).substitute(     host=proxy_host,     port=proxy_port,     username=proxy_username,     password=proxy_password,     scheme=scheme,   )   with zipfile.ZipFile(plugin_path, 'w') as zp:     zp.writestr("manifest.json", manifest_json)     zp.writestr("background.js", background_js)   return plugin_path proxyauth_plugin_path = create_proxyauth_extension(   proxy_host="proxy.crawlera.com",   proxy_port=8010,   proxy_username="fea687a8b2d448d5a5925ef1dca2ebe9",   proxy_password="" ) co = webdriver.ChromeOptions() co.add_argument("--start-maximized") co.add_extension(proxyauth_plugin_path) driver = webdriver.Chrome(chrome_options=co) driver.get(http://www.amazon.com/)

以上是“Selenium chrome如何配置代理Python版”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI