use of com.wikia.webdriver.elements.mercury.pages.discussions.ReportedPostsAndRepliesPage in project selenium-tests by Wikia.
the class ZeroErrorStateTests method userSeesProperMessageWhenOpensEmptyReportedPostsPage.
private void userSeesProperMessageWhenOpensEmptyReportedPostsPage() {
ErrorMessages errorMessage = new ReportedPostsAndRepliesPage().open().getErrorMessages();
Assertion.assertTrue(errorMessage.isErrorMessagePresent());
Assertion.assertEquals(errorMessage.getErrorMessageText(), "There are no reported posts or replies.\n" + MESSAGE_2);
}
use of com.wikia.webdriver.elements.mercury.pages.discussions.ReportedPostsAndRepliesPage in project selenium-tests by Wikia.
the class FollowingPostTests method discussionsAdministratorOnDesktopCanFollowPostOnReportedPostsPage.
// Discussions Administrator on desktop
@Test(groups = "discussions-discussionsAdministratorDesktopFollowingPost")
@Execute(asUser = User.DISCUSSIONS_ADMINISTRATOR)
@InBrowser(browser = Browser.FIREFOX, browserSize = DESKTOP_RESOLUTION)
public void discussionsAdministratorOnDesktopCanFollowPostOnReportedPostsPage() {
createAndReportPostAsUserRemotely();
final PostActionsRow postActions = clickFollowOn(new ReportedPostsAndRepliesPage().open());
Assertion.assertTrue(postActions.isFollowed(), SHOULD_FOLLOW_POST);
}
use of com.wikia.webdriver.elements.mercury.pages.discussions.ReportedPostsAndRepliesPage in project selenium-tests by Wikia.
the class FollowingPostTests method discussionsAdministratorOnMobileCanUnfollowPostOnReportedListPage.
/**
* Post created by user is automatically followed.
*/
@Test(groups = "discussions-discussionsAdministratorMobileFollowingPost")
@Execute(asUser = User.DISCUSSIONS_ADMINISTRATOR)
@InBrowser(browser = Browser.CHROME, emulator = Emulator.GOOGLE_NEXUS_5)
public void discussionsAdministratorOnMobileCanUnfollowPostOnReportedListPage() {
final PostEntity.Data data = DiscussionsOperations.using(User.DISCUSSIONS_ADMINISTRATOR, driver).createPostWithUniqueData();
DiscussionsOperations.using(User.USER, driver).reportPost(data);
final PostActionsRow postActions = clickUnfollowOn(new ReportedPostsAndRepliesPage().open());
Assertion.assertFalse(postActions.isFollowed(), SHOULD_UNFOLLOW_POST);
}
use of com.wikia.webdriver.elements.mercury.pages.discussions.ReportedPostsAndRepliesPage in project selenium-tests by Wikia.
the class FollowingPostTests method discussionsAdministratorOnDesktopCanUnfollowPostOnReportedListPage.
/**
* Post created by user is automatically followed.
*/
@Test(groups = "discussions-discussionsAdministratorDesktopFollowingPost")
@Execute(asUser = User.DISCUSSIONS_ADMINISTRATOR)
@InBrowser(browser = Browser.FIREFOX, browserSize = DESKTOP_RESOLUTION)
public void discussionsAdministratorOnDesktopCanUnfollowPostOnReportedListPage() {
final PostEntity.Data data = DiscussionsOperations.using(User.DISCUSSIONS_ADMINISTRATOR, driver).createPostWithUniqueData();
DiscussionsOperations.using(User.USER, driver).reportPost(data);
final PostActionsRow postActions = clickUnfollowOn(new ReportedPostsAndRepliesPage().open());
Assertion.assertFalse(postActions.isFollowed(), SHOULD_UNFOLLOW_POST);
}
use of com.wikia.webdriver.elements.mercury.pages.discussions.ReportedPostsAndRepliesPage in project selenium-tests by Wikia.
the class FollowingPostTests method discussionsAdministratorOnMobileCanFollowPostOnReportedPostsPage.
// Discussions Administrator on mobile
@Test(groups = "discussions-discussionsAdministratorMobileFollowingPost")
@Execute(asUser = User.DISCUSSIONS_ADMINISTRATOR)
@InBrowser(browser = Browser.CHROME, emulator = Emulator.GOOGLE_NEXUS_5)
public void discussionsAdministratorOnMobileCanFollowPostOnReportedPostsPage() {
createAndReportPostAsUserRemotely();
final PostActionsRow postActions = clickFollowOn(new ReportedPostsAndRepliesPage().open());
Assertion.assertTrue(postActions.isFollowed(), SHOULD_FOLLOW_POST);
}
Aggregations