//private MyAccount() { } public static MyAccount MyAccountMenu() { Thread.Sleep(1000); if (IsLogedIn()) { Account = new NotLoginedUserAcountElements(); } else { Account = new LoginedUSerAcountElements(); } return(Account); }
public MyAccountPage MyAccountClick() { MyAccount.Click(); return(new MyAccountPage()); }
public MyAccount MyAccountButtonClick() { MyAccountButton.Click(); Thread.Sleep(500); return(MyAccount.MyAccountMenu()); }