@Feature(summary = "The administrator must enter the new user password " +
"into password and confirm password in order to change it",
tcmsTestPlanIds = 5316, tcmsTestCaseIds = 0)
@Test(timeout = ZanataTestCase.MAX_SHORT_TEST_DURATION)
public void changeAUsersPasswordRequiredFields() throws Exception {
ManageUserAccountPage manageUserAccountPage = dashboardPage
.goToAdministration()
.goToManageUserPage()
.editUserAccount("translator")
.enterPassword("newpassword")
.saveUserExpectFailure();
assertThat(manageUserAccountPage.getErrors())
.contains(ManageUserAccountPage.PASSWORD_ERROR)
.as("The password failure error is displayed");
}