If I have a WebDocument object, I can check its ReadyState property to see if it is complete, interactive, loading, etc...
Frames and IFrames can also have a state, at least in IE based on some old code I'm trying to port. I cannot see how to check a Frame or iFrame's state with Ranorex. Is this possible? See http://msdn.microsoft.com/en-us/library/ms534359(v=vs.85).aspx
So what happens is when I click something in my App, the IFrame starts to load, and I need to check something in the IFrame once it has completed loading. Because I'm trying to write a generic function, which will be called from many different places, and the IFrame will not always display the same things (it will never be a consistent UI) I cannot look for something that will always be there (a common solution for AJAX).
Aracknid