@Test(
     groups = {"P1", "P1_Target", "PasswordChange"},
     dependsOnMethods = {"verifyValidationOnChangePasswordOfNewEmployeeTest"})
 public void changePasswordWithIncorrectNewPasswordTest() {
   passwordActions.verifyValidationOnChangePasswordWithNewPasswordNumericOnly(
       SetupStaticData.PASSWORD, SetupStaticData.PASSWORD_ONLY_NUMERIC);
   passwordActions.verifyValidationOnChangePasswordWithNewPasswordAlphabetOnly(
       SetupStaticData.PASSWORD, SetupStaticData.PASSWORD_ONLY_ALPHABET);
   passwordActions.verifyValidationOnChangePasswordWithLessThanEightDigit(
       SetupStaticData.PASSWORD, SetupStaticData.PASSWORD_LESS_THAN_8_DIGIT);
 }