public void ThenTheCommunityNotCreatedSuccessfully(string CommunityName) { createCommunity cs = new createCommunity(driver); cs.communitySubmit(); // Assert.AreEqual(cs.communitySubmit(), cs.communitySubmit(), "i am in same page"); }
public void WhenCreateWithCommunityNameButDontFillRequiredFieldsGameAgeAndLanguage(string communityname) { createCommunity cs = new createCommunity(driver); cs.EnterCommunityName(communityname); cs.SelectGame(); cs.SelectAge(); cs.SelectLanguage(); cs.CommunityIntro(); cs.communitySubmit(); }
public void WhenFillCommunityFieldsAndCreate(string communityname) { createCommunity cs = new createCommunity(driver); cs.EnterCommunityName(communityname); cs.SelectGame(); cs.SelectAge(); cs.SelectLanguage(); cs.CommunityIntro(); cs.SelectFavGame(); cs.AddTags(); cs.communitySubmit(); }