AcmeNavigationPage navPage;
public boolean testAcmeAirlinesSample(){
//launch the sample
AcmeResultPage result = launchAcmeAirlines("/index.html");
//maximize the window - Because the nav links are not visible when the browser is not maximized
result.getWebDriver().manage().window().maximize();
//check the home page appears
WebElement page = result.getMainContent();
assertTrue(page.isDisplayed());
boolean navigationIsOkay = checkNavigationLinks(result);
assertTrue(navigationIsOkay);