public static void BeforeTestRun()
        {
            var path = GenericHelper.CreateFolder("ResultsReport");

            path = path + @"\index.html";
            ExtentHtmlReporter htmlReporter = new ExtentHtmlReporter(path);

            htmlReporter.Config.Theme = AventStack.ExtentReports.Reporter.Configuration.Theme.Dark;
            _extent = new AventStack.ExtentReports.ExtentReports();
            _extent.AddSystemInfo("The tests are running on: ", Config.GetConfiguration().GetSection("Browser")["BrowserType"] + " Version: " + ChromeDriverVersionHelper.GetChromeBrowserVersion());
            _extent.AttachReporter(htmlReporter);
        }