根据这个,现在可以修改标题。Atm我需要在PhantomJS webdriver中修改Accept-Language。此代码不起作用
DesiredCapabilities.PHANTOMJS['phantomjs.page.customHeaders.Accept-Language'] = 'ru-RU' driver = webdriver.PhantomJS()
是否可以通过某种方式将Phantomjs配置为发送我的标头?我不在乎:在ghostdriver,phantomjs或phantomjs- webdriver中。
PhantomJS 的最新版本(1.9.1)是2013年5月5日发布。拉取请求已合并2013年6月23日。
如果您使用的PhantomJS 1.9.1版本,自定义标头将不起作用。
您必须自己构建phantomjs或等到phantomjs合并ghostdriver更改并发布新版本。
使用新建的phantomjs,我得到以下结果:
from selenium import webdriver webdriver.DesiredCapabilities.PHANTOMJS['phantomjs.page.customHeaders.Accept-Language'] = 'ru-RU' driver = webdriver.PhantomJS() driver.get('http://httpbin.org/headers') print(driver.page_source)
... { "headers": { "Connection": "close", "Host": "httpbin.org", "Accept-Encoding": "gzip", "Accept-Language": "ru-RU", "User-Agent": "Mozilla/5.0 (Unknown; Linux i686) AppleWebKit/534.34 (KHTML, like Gecko) PhantomJS/1.10.0 (development) Safari/534.34", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" } ...
使用PhantomJS 1.9.2+ 。