public void Verify_EmailLogin()
        {
            HomePagePO homepage = new HomePagePO();
            EntryPO    entry    = homepage.Login();

            entry.Login(EntryType.Email);
            Assert.Equal("loggedInPagetitle".GetData(), _browserDriver.Title);
        }
        public void Verify_AppleLogin()
        {
            HomePagePO homepage = new HomePagePO();
            EntryPO    entry    = homepage.Login();

            entry.Login(EntryType.Apple);

            //Requires two factor authentication setup
            //==============================
            //Assert.Equal("loggedInPagetitle".GetData(), _browserDriver.Title);
        }