public void TC_MaintainWeightGoal() { coachingEnabled = cmn.GetConfig("CoachingEnabled").ElementAt(0)[1].ToLower(); if (coachingEnabled.Equals("false")) { Assert.Ignore("Coaching not available for client"); } CommonGoals cmngoal = new CommonGoals(softassertions); Page_MaintainWeightGoal mt = new Page_MaintainWeightGoal(softassertions); //cmn.ClickGoalMenu(); mt.InputWeight(); cmngoal.ClickStep1NextBtn(); is_soft_assert = true; mt.VerifyPlanScreen(); mt.VerifyActionsAdded(); System.Threading.Thread.Sleep(3000); cmngoal.ClickStep2NextBtn(); mt.VerifySetUpScreen(); cmngoal.ClickConfirmBtn(); mt.VerifyGoalComplete(); cmngoal.ClickRemoveBtn(); cmngoal.VerifyRemovePopUp(); cmngoal.ClickRemoveScreenYesBtn(); Page_HAPrompt haprompt = new Page_HAPrompt(); haprompt.GoToDashboard(); Page_Dashboard dashbrd = new Page_Dashboard(); Assert.IsTrue(dashbrd.AtDashboard(), "Not Navigated to Dashboard"); }
public void TC_VerifyRemovePopUp() { is_soft_assert = true; cmngoal.ClickRemoveBtn(); cmngoal.VerifyRemovePopUp(); softassertions.AssertAll(); }
public List <string[]> VerifyRemoveGoalPopUp() { System.Threading.Thread.Sleep(4000); List <string[]> result = VerifyRemoveScreen(); cmn.ClickRemoveBtn(); return(result); }
public void TC_VerifyRemovePopUp() { CommonGoals cg = new CommonGoals(softassertions); is_soft_assert = true; cg.ClickRemoveBtn(); cg.VerifyRemovePopUp(); softassertions.AssertAll(); }