Exemplo n.º 1
0
        public void LoginWithValidData()
        {
            HomePage          myHomePage          = new HomePage(Driver);
            LoginRegisterPage myLoginRegisterPage = new LoginRegisterPage(Driver);

            myHomePage.GoToLoginPage();
            myLoginRegisterPage.LoginIntoApplication("*****@*****.**", "123456");
            Assert.IsTrue(myLoginRegisterPage.LoginSuccessElement.Displayed);
        }
Exemplo n.º 2
0
        public void LoginWithInvalidData()
        {
            HomePage          myHomePage          = new HomePage(Driver);
            LoginRegisterPage myLoginRegisterPage = new LoginRegisterPage(Driver);

            myHomePage.GoToLoginPage();
            myLoginRegisterPage.LoginIntoApplication("*****@*****.**", "gegegergaswe");
            Assert.IsTrue(myLoginRegisterPage.LoginInvalidError.Displayed);
        }