private WebDriver driver = MockFactory.mockDriver();
@Test
public void isElementDisplayed() {
WebElement element = MockFactory.mockDisplayedElement(By.className(CustomBlock.CLASS_NAME), driver);
PageWithCustomBlock page = new PageWithCustomBlock(driver);
assertThat(element, isDisplayed());
assertThat(page.getBlock(), isDisplayed());
}