Example #1
0
        public void SetUpTest()
        {
            WebDriverUtil.Init();
            WebDriverUtil.GetWebDriver().Url = MailRuConstants.MailRuUrl;
            WebDriverUtil.GetWebDriver().Manage().Window.Maximize();
            LoginPage loginPage = new LoginPage();
            HomePage  homePage  = loginPage.Login(User.GetDefaultUser());

            Assert.IsTrue(loginPage.IsLogoutLinkDisplayed());
        }
Example #2
0
 public void EnterMailRu()
 {
     loginPage.Login(login, password);
     Assert.IsTrue(loginPage.IsLogoutLinkDisplayed());
 }