Example #1
0
        public void Test1()
        {
            LoginView objLogin = new LoginView(driver);

            objLogin.LoginUser();

            HomeView objHome = new HomeView(driver);

            AssertExistsLogo(objHome.GetValidationLogo());
            AssertLoggedUserTag(objHome.GetValidationUserLoggedName());
            AssertLoggedUserBanner(objHome.GetValidationUserLoggedBanner());
            objHome.createUser();

            UserCreationView objUserCreation = new UserCreationView(driver);

            objUserCreation.createUser();

            AssertCreatedEmployee(objUserCreation.GetResultCreation());
        }