1

Selenium 线没有使用命令找到我的标题request.response.headers['Content-Type']。我尝试了几个可以使用 chrome 开发工具找到的标头。

代码:从 seleniumwire 导入 webdriver

chromedriver = 'C:\Program Files (x86)\Google\Chrome\Application\chromedriver.exe'

browser = webdriver.Chrome(chromedriver)
browser.get('https://parents.netherhall.org')

all_requests = browser.requests


for request in browser.requests:
    if request.response:
        print(
            request.path,
            request.response.status_code,
            request.response.headers['active'])#

我得到的错误是KeyError: 'request-url'

4

0 回答 0