use of com.wikia.webdriver.elements.mercury.components.discussions.common.ErrorMessages in project selenium-tests by Wikia.
the class ZeroErrorStateTests method userSeesProperMessageWhenOpensEmptyPostsListPage.
private void userSeesProperMessageWhenOpensEmptyPostsListPage() {
ErrorMessages errorMessage = new PostsListPage().open().getErrorMessages();
Assertion.assertTrue(errorMessage.isEmptyPostsListMessageDisplayed());
Assertion.assertEquals(errorMessage.getEmptyPostsListMessageText(), "No posts yet. Get the discussion started, create the first post now!");
}
Aggregations