I'm trying to write a small Javascript code that I can execute in the Chrome's dev tools. This piece of code should check if one of the reports in the "Network" tab contains a specific string (lets say test123), similar to the Chrome's search bar:
If there are no reports that contain this string, it will refresh after a minute. Otherwise, it will alert me.
About the refreshing part I can use this post. I'm having a problem with checking if one of the reports contains a string. I want to mimic the machisem of this search bar. Is it possible to do in Chrome's dev tools?