public OrderHistoryPage NavigateToOrderHistory()
        {
            CustomerAccountPage myAccount        = new CustomerAccountPage();
            OrderHistoryPage    orderHistoryPage = myAccount.ClickOrderHistoryAndDetails();

            return(orderHistoryPage);
        }
        public void NavigateToViewCustomerAccount()
        {
            CustomerAccountPage myAccount = new CustomerAccountPage();

            myAccount.Click();
        }