I am making a code with Selenium in Python and collecting data on a website, and I have noticed that in Chrome's Devtools specifically in the "Network" section I have a file named "search", which gives me all the information that I need neat, this file is updated every 10 seconds
Is there a way to get the data from that file every time it appears again, that is, every time the file is updated it generates another file with the same name, I would like to be able to have access to that information whenever it generates a new one
I was looking a bit in the Selenium documentation but I did not find much, and looking in some posts, I have only seen that they have taken data but from Performance, but I do not have any data there
If you could guide me a little or provide a documentation that talks more about that and how this information could be obtained, I would appreciate it.