I want to fetch the status of specific JavaScript and CSS network requests of my website https://lifesciences.cactusglobal.com. These network requests can be seen in chrome network. I want to print the request URL and its response code. Screenshot attached below for reference, check the underlined requests:

I tried using the package selenium-wire
driver.get('https://www.google.com')
for request in driver.requests:
if request.response:
print(
request.url,
request.response.status_code,
request.response.headers['Content-Type']
)
But it returns only responses and headers of the URL entered and not the network requests. Is there any other way to traverse through the network requests in selenium python?
Thanks