from seleniumwire import webdriver
from config import Config
options = {
'proxy': {
'http': 'http://127.0.0.1:9899',
'https': 'http://127.0.0.1:9899',
'no_proxy': 'localhost,127.0.0.1'
}
}
def interceptor(request):
request.headers['Authorization'] = 'SomeAuthorizationAuthorizationValue'
driver = webdriver.Chrome(seleniumwire_options=options, executable_path=Config.CHROME_DRIVER_PATH)
driver.request_interceptor = interceptor
# All requests will now use 'some_referer' for the referer
driver.get('https://taobao.com')
我配置了代理,走burp。通过burp抓包可以看到运行结果如下,说明请求头字段更改完成。
文章来源地址https://www.toymoban.com/news/detail-509078.html
文章来源:https://www.toymoban.com/news/detail-509078.html
到了这里,关于用Selenium给chrome添加任意请求头信息的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!