use of com.wikia.webdriver.elements.mercury.components.discussions.common.PostActionsRow in project selenium-tests by Wikia.
the class CreatingReplyTests method assertThatPostIsFollowedWhenReplyAdded.
private void assertThatPostIsFollowedWhenReplyAdded(PostDetailsPage page, ReplyCreator replyCreator) {
final String text = TextGenerator.createUniqueText();
replyCreator.click().clickGuidelinesReadButton().add(text).clickSubmitButton();
page.getReplies().waitForReplyToAppearWith(text);
final PostActionsRow postActions = page.getPost().findNewestPost().findPostActions();
Assertion.assertTrue(postActions.isFollowed(), POST_FOLLOWED_BY_DEFAULT);
}
use of com.wikia.webdriver.elements.mercury.components.discussions.common.PostActionsRow in project selenium-tests by Wikia.
the class CreatingReplyTests method assertThatPostCanBeUnfollowed.
private void assertThatPostCanBeUnfollowed(PostDetailsPage page) {
final PostActionsRow postActions = page.getPost().findNewestPost().findPostActions();
postActions.clickFollow();
Assertion.assertFalse(postActions.isFollowed(), SHOULD_UNFOLLOW_MESSAGE);
}
use of com.wikia.webdriver.elements.mercury.components.discussions.common.PostActionsRow in project selenium-tests by Wikia.
the class FollowingPostTests method assertThatPostCanBeFollowedOn.
private void assertThatPostCanBeFollowedOn(Function<PostEntity.Data, PageWithPosts> navigator) {
final PostEntity.Data data = createPostAsUserRemotely();
final PostActionsRow postActions = clickFollowOn(navigator.apply(data));
Assertion.assertTrue(postActions.isFollowed(), SHOULD_FOLLOW_POST);
}
use of com.wikia.webdriver.elements.mercury.components.discussions.common.PostActionsRow in project selenium-tests by Wikia.
the class FollowingPostTests method userOnMobileCanFollowAndUnfollowPostOnFollowedPostsPage.
/**
* By default all posts on "Followed" tab are followed.
*/
@Test(groups = "discussions-userMobileFollowingPost", enabled = false)
@Execute(asUser = User.USER)
@InBrowser(browser = Browser.CHROME, emulator = Emulator.GOOGLE_NEXUS_5)
@RelatedIssue(issueID = "SOC-3674", comment = "Introducing pagination")
public void userOnMobileCanFollowAndUnfollowPostOnFollowedPostsPage() {
createPostAsUserRemotely();
final FollowPage page = FollowPage.open();
final PostActionsRow postActions = clickUnfollowOn(page);
Assertion.assertFalse(postActions.isFollowed(), SHOULD_UNFOLLOW_POST);
clickFollowOn(page);
Assertion.assertTrue(postActions.isFollowed(), SHOULD_FOLLOW_POST);
}
use of com.wikia.webdriver.elements.mercury.components.discussions.common.PostActionsRow 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);
}
Aggregations