public TravelAdvisorPages pages = new TravelAdvisorPages();
@Test
public void shouldFindSingleCity() throws Exception {
CitySearchPage citySearchPage = pages.get(CitySearchPage.class);
CityPage found = citySearchPage.searchForSingleCity("Bath");
assertThat(found, is(notNullValue()));
}