I am currently working on a project with numerous frames. While I am aware that using window.length will provide the number of "child browsing contexts", like frames and iframes, I am unsure how to access a list of these frames and view their names. Is there a way to reference a specific frame by name, without having to already know the name like window.parent.frames["foo"]
? How can I see a comprehensive list of frame names? Whenever I attempt to explore the window object in dev tools and expand the 'frame' object, I consistently end up with the same 'window' object and do not see a list of frames. Even after attempting to further explore 'frames', it seems to lead to a recursive dead end.