/// <summary>
        /// Open and Search in Amazon
        /// </summary>
        /// <param name="text"></param>
        public void AmazonSearch(String text)
        {
            Actions.NavigateToUrl(WebEnvironment.AppSettings["AmazonUrl"]);
            Waits.WaitForPageLoad();

            Actions.Click(_ddpDept);
            Waits.Equals(3000);

            ///Issue: unsure how to scroll withing a dropdown with C#...
            //Actions.Click(_optVideoGames);
            ///...end

            Actions.SendKeys(_fldSearch, text);
            Actions.Click(_btnSearch);
            Waits.WaitForPageLoad();

            //Actions.Click(_lnkLOZ);
            //Waits.WaitForPageLoad();

            //Actions.Click(_btnAddtoCart);
            //Waits.Equals(3000);

            //Actions.Click(_btnConttoCart);
        }