public void TestPointAdjustmentScr()
 {
     try
     {
         var pAdjPage = HPage.NavigateToManualPointAdjustment();
         pAdjPage.SelectPointAndProgram("Visa", "Test Activity"); // Provide unique Point Type and Programe Name
         pAdjPage.SelectPointTypInGrid(Properties.Settings.Default.ManualPointAdjustmentGrid, 1, 1);
         pAdjPage.ClickPointAdjTakeScrShot($"ManualPointAdjustment-{DateTime.UtcNow.ToString("hh-mm-ss")}");
         pAdjPage.Logout();
     }
     catch (Exception exception)
     {
         Logger.LogException(exception);
         throw;
     }
 }