There is a site where events periodically appear in one of the frames, i.e. The page is completely redrawn and there appears a different content from the previous one. How can this event be caught? And is it possible to somehow distinguish exactly which event occurred?

  • one
    For example, you can sort out the internal logic of the page, send the necessary requests to the server by Ajax and correctly interpret the answers. - VladD
  • Unfortunately in the Ajax requests I am zero. I understand the logic of the page, but the events that arise in the frame do not depend on me. They can occur at any time, I just need to programmatically intercept it and already do the right things with it. - Pyrejkee
  • one
    may, as an option, make a javascript injection - hang your event on the onload frame and in the code make a handler if it occurs. I did not do this, but I really think so. about the javascript.info/tutorial/frames-and-iframes events about the event handler stackoverflow.com/questions/5167522/… about the javascript injection stackoverflow.com/questions/153748/… . Try it, it should work - NMD
  • There are more ways easier?) - Pyrejkee

0