Is it possible somehow export Response information from Network tab from Chrome Dev Tools with python?
Thank you.
Asked
Active
Viewed 143 times
0

Erika
- 263
- 1
- 8
- 20
2 Answers
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

lukuan geng
- 11
- 3
-
Thanks. Is it possible to do this saving process via python code? – Erika Jul 04 '22 at 08:44
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