0

Is it possible somehow export Response information from Network tab from Chrome Dev Tools with python? enter image description here Thank you.

Erika
  • 263
  • 1
  • 8
  • 20

2 Answers2

0

You can do this by right-clicking on the request to be exported and there will be "Save all as HAR with content",Or directly copy the string that returns the result

0

If you're using Python then you can get the same information that you see in the Response tab, using the requests library,

>>> import requests
>>> response = requests.get("http://www.google.com")
>>> print response.content
Pankaj Parashar
  • 9,762
  • 6
  • 35
  • 48