private static IWebDriver ApplyCommon(this IWebDriver driver, WebDriverConfig config)
        {
            driver.ApplyElementWaitTimeout(config)
            .ApplyPageLoadTimeout(config)
            .ApplyImplicitWaitTimeout(config)
            .SetScreenshotsFolder(config.ScreenshotsFolder);

            return(driver);
        }