public void KiwiSaverForSelfEmployed()
            {
                //test report
                ExtentReport.test = ExtentReport.extent.StartTest("Calculation for Self Employed");

                //Navigate to KiwiSaver Calculator
                Page_Home navigate = new Page_Home();

                navigate.NavigationToCalculator();

                Page_KiwisaverCalculator calculator = new Page_KiwisaverCalculator();

                //KiwiSaver Calculation for Self-Employed
                calculator.SelfEmployed();
            }
        public void WhenIAddKiwiSaverDetailsForSelf_Employed()
        {
            Page_KiwisaverCalculator selfEmployed = new Page_KiwisaverCalculator();

            selfEmployed.SelfEmployed();
        }