I know at every point in my script where the page changes. I just want a Sub-Routine that waits for the page to completely load and tell me the Title and the URL
As you rightly mentioned, check for the page loading status
then get the URL/Title
As you rightly mentioned, check for the page loading status
Code:
Browser("Browser").Page("Page").object.readyState
then get the URL/Title
Code:
msgbox Browser("Browser").Page("Page").GetROProperty("url")
msgbox Browser("Browser").Page("Page").GetROProperty("title")