public void AddEligibleGroup(string grpName, bool useNomination, string nominationGrpName)
 {
     EligibleGroupPage egPage = new EligibleGroupPage(driver);
     egPage.AddEligibleGroup(grpName,useNomination,nominationGrpName);
 }
        public void AddEligibleGroup(string grpName, bool useNomination, string nominationGrpName)
        {
            EligibleGroupPage egPage = new EligibleGroupPage(driver);

            egPage.AddEligibleGroup(grpName, useNomination, nominationGrpName);
        }
Example #3
0
        public void AddEligibleGroup(string grpName)
        {
            EligibleGroupPage egPage = new EligibleGroupPage(driver);

            egPage.AddEligibleGroup(grpName);
        }
        public void SelectEligibelGrpClickNext()
        {
            var prgName = new EligibleGroupPage(driver);

            prgName.ClickEligibelGrpAndNext();
        }
 public void AddEligibleGroup(string grpName)
 {
     EligibleGroupPage egPage = new EligibleGroupPage(driver);
     egPage.AddEligibleGroup(grpName);
 }
 public void SelectEligibelGrpClickNext()
 {
     var prgName = new EligibleGroupPage(driver);
     prgName.ClickEligibelGrpAndNext();
 }