@Test public void clickOnDropDown() { LoginPage loginPage = new LoginPage(driver); IndexPage indexPage = loginPage.doLogin("atishay", "atishay"); DropDownPage dropDownPage = indexPage.clickDropDown(); dropDownPage.setSelectCountry("India"); dropDownPage.setEnterCountry("India"); }
@Test public void validateTotalBoxesInWidget() { LoginPage loginPage = new LoginPage(driver); IndexPage indexPage = loginPage.doLogin("atishay", "atishay"); Assert.assertEquals(indexPage.getCountOfBoxesUnderWidgetSection(), 7); }
@Test public void validateTotalNoOfBoxes() { LoginPage loginPage = new LoginPage(driver); IndexPage indexPage = loginPage.doLogin("atishay", "atishay"); Assert.assertEquals(indexPage.getCountOfBoxesUnderInteractionSection(), 5); }