assertThat(searchArrow.getWrappedElement(), is(notNullValue()));
}
@Test
public void annotatedBySuperclassElementsPageShouldBeInitialized() {
AnnotatedBySuperclassElementsPage page = new AnnotatedBySuperclassElementsPage(driver);
assertThat("Htmlelement annotated by superclass should be not null",
page.getSearchArrow(), is(notNullValue()));
assertThat("List annotated by parameter superclass should be not null",
page.getCompanyList(), is(notNullValue()));
}