public void TC_FilTobaccoTracker()
        {
            Common config    = new Common();
            string isenabled = config.GetConfig("CoachingEnabled").ElementAt(0)[1].ToLower();

            if (isenabled.Equals("false"))
            {
                Assert.Ignore("Coaching not enabled for client");
            }
            Page_TobaccoTracker tob = new Page_TobaccoTracker(softassertions);

            tob.VerifyTobaccoTrackerFromGoal();
            is_soft_assert = true;
            softassertions.AssertAll();
        }