예제 #1
0
파일: MyAccount.cs 프로젝트: orest77/Test
        //private MyAccount() { }

        public static MyAccount MyAccountMenu()
        {
            Thread.Sleep(1000);
            if (IsLogedIn())
            {
                Account = new NotLoginedUserAcountElements();
            }
            else
            {
                Account = new LoginedUSerAcountElements();
            }
            return(Account);
        }
예제 #2
0
파일: MyAccount.cs 프로젝트: orest77/Test
 public MyAccountPage MyAccountClick()
 {
     MyAccount.Click();
     return(new MyAccountPage());
 }
예제 #3
0
 public MyAccount MyAccountButtonClick()
 {
     MyAccountButton.Click();
     Thread.Sleep(500);
     return(MyAccount.MyAccountMenu());
 }