use of com.wikia.webdriver.elements.mercury.pages.discussions.FollowPage 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.pages.discussions.FollowPage in project selenium-tests by Wikia.
the class FollowingPostTests method userOnDesktopCanFollowAndUnfollowPostOnFollowedPostsPage.
/**
* By default all posts on "Followed" tab are followed.
*/
@Test(groups = "discussions-userDesktopFollowingPost", enabled = false)
@Execute(asUser = User.USER)
@InBrowser(browser = Browser.FIREFOX, emulator = Emulator.GOOGLE_NEXUS_5)
@RelatedIssue(issueID = "SOC-3674", comment = "Introducing pagination")
public void userOnDesktopCanFollowAndUnfollowPostOnFollowedPostsPage() {
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);
}
Aggregations