private ApplicationManager()
        {
            ChromeOptions options = new ChromeOptions();

            options.AddArgument("start-maximized");
            options.SetLoggingPreference(LogType.Browser, LogLevel.Severe);
            options.SetLoggingPreference(LogType.Browser, LogLevel.Warning);
            Driver = new ChromeDriver(options);

            Driver.Manage().Timeouts().ImplicitWait = TimeSpan.FromSeconds(1.5);
            Wait = new WebDriverWait(Driver, TimeSpan.FromSeconds(10));
            Driver.Manage().Cookies.DeleteAllCookies();

            MainPage    = new MainPage(Driver);
            ProductPage = new ProductPage(Driver);
            CartPage    = new CartPage(Driver);
        }