Esempio n. 1
0
        public void ThenTheCommunityNotCreatedSuccessfully(string CommunityName)
        {
            createCommunity cs = new createCommunity(driver);

            cs.communitySubmit();

            //  Assert.AreEqual(cs.communitySubmit(), cs.communitySubmit(), "i am in same page");
        }
Esempio n. 2
0
        public void WhenCreateWithCommunityNameButDontFillRequiredFieldsGameAgeAndLanguage(string communityname)
        {
            createCommunity cs = new createCommunity(driver);

            cs.EnterCommunityName(communityname);
            cs.SelectGame();
            cs.SelectAge();
            cs.SelectLanguage();
            cs.CommunityIntro();
            cs.communitySubmit();
        }
Esempio n. 3
0
        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();
        }
Esempio n. 4
0
        public void WhenCreateANewCommunityWithCommunityName()
        {
            createCommunity cs = new createCommunity(driver);

            cs.CreateCommunity();
        }