use of com.wikia.webdriver.pageobjectsfactory.pageobject.forumpageobject.ForumHistoryPageObject in project selenium-tests by Wikia.
the class ForumThreadTests method threadHistoryPageContainsTableAndCells.
@Execute(asUser = User.STAFF)
@Test(groups = { "ForumThreadTests_004" })
public void threadHistoryPageContainsTableAndCells() {
ForumPage forumMainPage = new ForumPage();
String title = String.format(PageContent.FORUM_TITLE_PREFIX, forumMainPage.getTimeStamp());
String message = String.format(PageContent.FORUM_MESSAGE, forumMainPage.getTimeStamp());
forumMainPage.openForumMainPage(wikiURL);
ForumBoardPage forumBoard = forumMainPage.openForumBoard();
ForumThreadPageObject forumThread = forumBoard.startDiscussion(title, message, false);
forumThread.verifyDiscussionTitleAndMessage(title, message);
ForumHistoryPageObject forumHistory = forumThread.openHistory();
forumHistory.verifyImportandPageElements();
}
Aggregations