Selenium PhantomJS custom headers in Python
问题 I want to add "custom headers" to Selenium PhantomJS in python. These are the headers I wanna add. headers = { 'Accept':'*/*', 'Accept-Encoding':'gzip, deflate, sdch', 'Accept-Language':'en-US,en;q=0.8', 'Cache-Control':'max-age=0', 'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36' } This is the code I am working with: from selenium import webdriver service_args = [ '--proxy=127.0.0.1:9999', '--proxy-type=socks5', ]