QTP - Wait for web page to load completely

There are instances when there isn't any unique property or object to check on the landing page during a browser navigation, in such cases we can use either of the below options to code:
set objReadyState = Browser("").Page("").Object
While objReadyState.readyState = "Completed"
Wend
Set Object=nothing
Set Object=Browser("").object
While Object.Busy=True
Wend
Set Object=nothing
Happy Testing!
set objReadyState = Browser("").Page("").Object
While objReadyState.readyState = "Completed"
Wend
Set Object=nothing
Set Object=Browser("").object
While Object.Busy=True
Wend
Set Object=nothing
Happy Testing!