Exemplo n.º 1
0
        public void ThenIShouldBeAbleToCreateMultipleSuccessfully(string employeeName)
        {
            var systemUsersPage = new SystemUsersPage(driver);

            systemUsersPage.ClickAdd();
            systemUsersPage.AddAndSaveUser(employeeName);
            systemUsersPage.VerifyUser();
        }
Exemplo n.º 2
0
        public void ThenIShouldBeAbleToCreateANewUserSuccessfully()
        {
            var systemUsersPage = new SystemUsersPage(driver);

            systemUsersPage.ClickAdd();
            systemUsersPage.AddAndSaveUser("Kumar");
            systemUsersPage.VerifyUser();
        }