Sesame HTTP: Crawler Settings Selenium+Chrome Proxy

Weibo login limits the number of errors... In addition, a large number of cookie accounts have been blocked, and the blocked accounts need to be removed from the cookie pool... Need to use a proxy... rogue Baidu for most of the day, what is it? ? ? As a result, it was replaced by Google and solved in minutes (so the problem is here? What else does Baidu do besides selling fake drugs?)

Selenium+Chrome authentication proxy cannot be handled by options. You can only use an extension to solve it in another way

Original address: https://stackoverflow.com/questions/29983106/how-can-i-set-proxy-with-authentication-in-selenium-chrome-web-driver-using-pyth#answer-30953780 (Stack Overflow this It's a good place)

go you!


# -*- coding: utf-8 -*-
# @Time    : 2017/11/15 9:50
# @Author : oops
# @Site    :
# @File    : pubilc.py
# @Software: PyCharm

import string
import zipfile

def create_proxyauth_extension(proxy_host, proxy_port,
                               proxy_username, proxy_password,
                               scheme='http', plugin_path=None):
    """Proxy authentication plugin

    args:
        proxy_host (str): your proxy address or domain name (str type)
        proxy_port (int): proxy port number (int type)
        proxy_username (str): username (string)
        proxy_password (str): password (string)
    kwargs:
        scheme (str): proxy mode default http
        plugin_path (str): the absolute path to the extension

    return str -> plugin_path
    """
    

    if plugin_path is None:
        plugin_path = '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

 Instructions:



from selenium import webdriver
from common.pubilc import create_proxyauth_extension
 
proxyauth_plugin_path = create_proxyauth_extension(
    proxy_host="XXXXX.com",
    proxy_port=9020,
    proxy_username="XXXXXXX",
    proxy_password="XXXXXXX"
)
 
 
co = webdriver.ChromeOptions()
# co.add_argument("--start-maximized")
co.add_extension(proxyauth_plugin_path)
 
 
driver = webdriver.Chrome(executable_path="C:\chromedriver.exe", chrome_options=co)
driver.get("http://ip138.com/")
print(driver.page_source)
 

 Unauthenticated proxy:

options = webdriver.ChromeOptions()
options.add_argument('--proxy-server=http://ip:port')  
driver = webdriver.Chrome(executable_path="C:\chromedriver.exe", chrome_options=0ptions)
driver.get("http://ip138.com/")
print(driver.page_source)

 The above is over So Easy

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326341863&siteId=291194637