@Then("^Latest stories is displayed$") public void Latest_stories_is_displayed() throws Throwable { webDriver.waitForElement(By.id("js-latest-stories")); }
@Then("^Latest developments is displayed$") public void Latest_developments_is_displayed() throws Throwable { WebElement heading = webDriver.waitForElement(By.cssSelector(".story-latest .story-sub-head")); assertTrue(heading.getText().equals("Latest")); }