public void ThenAllTheInforamtionShouldBeTheSameAsWhatIEnteredInTenantDetailsAndLiabilitiesDetails()
        {
            test = extent.CreateTest("Add Tenant -- Check all the information under summary section");
            test.AssignCategory("Add Tenant Testing");

            AddTenantPage addTenant = new AddTenantPage();

            if (addTenant.ValidateDataInSummary())
            {
                Base.test.Log(AventStack.ExtentReports.Status.Pass, "test passed, successfully validate all the inforamtion in summary");
            }
            else
            {
                Base.test.Log(AventStack.ExtentReports.Status.Fail, "test failed, fail to validate all the inforamtion in summary");
            }
        }