Package org.zanata.page.administration

Examples of org.zanata.page.administration.ManageUserAccountPage


    @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");
    }
View Full Code Here

TOP

Related Classes of org.zanata.page.administration.ManageUserAccountPage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.