According to the documentation from Awesomium, the event WebView.LoadingFrameComplete is triggered when a frame finishes loading.
This description seems somewhat ambiguous. Does this event coincide with the JavaScript
load
event of the window? Or perhaps it aligns more closely with theDOMContentLoaded
event or areadystatechange
event with acomplete
state?
I am uncertain as I have encountered instances where the LoadingFrameComplete
event was raised before external JavaScript files finished execution. However, upon further investigation, it turned out that the server failed to deliver these files.