wkeeling / selenium-wire

Extends Selenium's Python bindings to give you the ability to inspect requests made by the browser.
MIT License
1.9k stars 251 forks source link

Blank response.reason #674

Open kaeso opened 1 year ago

kaeso commented 1 year ago

Code:

def my_response_interceptor(request, response): 
    print("status: " + str(response.status_code) + " (" + response.reason + ")")

Output:

status: 200 ()
kaeso commented 1 year ago

This issue happens only with SSL connection (https)