public void ThenIShouldBeAbleToCreateMultipleSuccessfully(string employeeName) { var systemUsersPage = new SystemUsersPage(driver); systemUsersPage.ClickAdd(); systemUsersPage.AddAndSaveUser(employeeName); systemUsersPage.VerifyUser(); }
public void ThenIShouldBeAbleToCreateANewUserSuccessfully() { var systemUsersPage = new SystemUsersPage(driver); systemUsersPage.ClickAdd(); systemUsersPage.AddAndSaveUser("Kumar"); systemUsersPage.VerifyUser(); }