Ejemplo n.º 1
0
        //private MyAccount() { }

        public static MyAccount MyAccountMenu()
        {
            Thread.Sleep(1000);
            if (IsLogedIn())
            {
                Account = new NotLoginedUserAcountElements();
            }
            else
            {
                Account = new LoginedUSerAcountElements();
            }
            return(Account);
        }
Ejemplo n.º 2
0
 public MyAccountPage MyAccountClick()
 {
     MyAccount.Click();
     return(new MyAccountPage());
 }
Ejemplo n.º 3
0
 public MyAccount MyAccountButtonClick()
 {
     MyAccountButton.Click();
     Thread.Sleep(500);
     return(MyAccount.MyAccountMenu());
 }