I would like to verify whether home page is displayed before executing other test cases on the website.
Assert.assertEquals(driver.getTitle(), “Title of webpage”, "Home page is not opened ");
However above assert is passed, when HTML is displayed as below. I would like to pass only when the actual website is loaded including all images. Please help me with it.