public void Setup()
        {
            string browser  = Properties.Settings.Default.Browser.ToUpper();
            string LoginURL = Properties.Settings.Default.LoginURL;

            this.wds    = new WebDriverHelper();
            this.driver = wds.InitDriver(browser);

            //Example URL - To be removed/modified based on testing requirement
            this.driver.Navigate().GoToUrl(LoginURL);
        }