Как установить заголовки в веб-драйвере python selenium firefox - PullRequest
0 голосов
/ 12 июня 2018

Я делаю программирование обхода IP через сайт под названием ProxyMesh.

Ниже приведен код, который я создал.

def ip_bypass_proxymesh():
    profile = webdriver.FirefoxProfile()
    profile.set_preference("browser.privatebrowsing.autostart", True)
    profile.set_preference("network.proxy.type", 1)
    profile.set_preference("network.proxy.http", '1xx.2xx.1xx.30')
    profile.set_preference("network.proxy.http_port", 312xx)
    profile.set_preference("network.proxy.ssl", '45.32.2xx.x6')
    profile.set_preference("network.proxy.ssl_port", 31xxx)
    driver = webdriver.Firefox(firefox_profile=profile, executable_path='D:\webdrivers/geckodriver')
    return driver

Я хотел бы добавить заголовок, который указывает страну,

------ >>> header = {'X-ProxyMesh-Country: US'}

но я понятия не имею.(Я искал это, но так как я новичок, я не понимаю.)

Буду признателен, если вы дадите мне знать.

https://docs.proxymesh.com/article/7-request-response-headers#x-proxymesh-country

Большое спасибо.

...