Forum Discussion

jayakotib4u's avatar
jayakotib4u
Occasional Contributor
9 years ago
Solved

Busy property equivalent for firefox

Firefox browser does not have property "Busy".Busy is the property available for IE but could not find an equivalent of this property in firefox. 

 

My need is to verify that a page is loaded after actaully hitting a link and sometime it may take sometime to load the page.

I would like to wait till the page is loaded and then verify some properties of the page.

 

For IE I am waiting for Busy=False and then verifying banner or title of the page loaded.

  • Page.Wait is a cross-browser equivalent of Busy/readyState.

     

    Aliases.browser.page.link.Click();
    Aliases.browser.newPage.Wait();

2 Replies