Examples of gotoMaintainersTab()


Examples of org.zanata.page.projects.projectsettings.ProjectPermissionsTab.gotoMaintainersTab()

        assertThat(projectPermissionsTab.getSettingsMaintainersList())
                .contains("admin")
                .as("The admin user is shown in the list");

        ProjectMaintainersPage projectMaintainersPage = projectPermissionsTab
                .gotoMaintainersTab();

        assertThat(projectMaintainersPage.getMaintainers())
                .contains("Administrator @admin")
                .as("The admin user is shown in the list");
View Full Code Here

Examples of org.zanata.page.projects.projectsettings.ProjectPermissionsTab.gotoMaintainersTab()

        assertThat(projectPermissionsTab.getSettingsMaintainersList())
                .contains("translator")
                .as("The translator user is a maintainer");

        ProjectMaintainersPage projectMaintainersPage = projectPermissionsTab
                .gotoMaintainersTab();

        assertThat(projectMaintainersPage.getMaintainers())
                .contains("translator @translator")
                .as("The translator user is shown in the list");
View Full Code Here

Examples of org.zanata.page.projects.projectsettings.ProjectPermissionsTab.gotoMaintainersTab()

        assertThat(projectPermissionsTab.getSettingsMaintainersList())
                .contains("glossarist")
                .as("The glossarist user was added as a maintainer");

        ProjectMaintainersPage projectMaintainersPage = projectPermissionsTab
                .gotoMaintainersTab();

        assertThat(projectMaintainersPage.getMaintainers())
                .contains("glossarist @glossarist")
                .as("The glossarist user is shown in the list");
View Full Code Here

Examples of org.zanata.page.projects.projectsettings.ProjectPermissionsTab.gotoMaintainersTab()

        assertThat(projectPermissionsTab.getSettingsMaintainersList())
                .doesNotContain("glossarist")
                .as("Glossarist maintainer is removed");

        ProjectMaintainersPage projectMaintainersPage = projectPermissionsTab
                .gotoMaintainersTab();

        assertThat(projectMaintainersPage.getMaintainers())
                .doesNotContain("Glossarist @glossarist")
                .as("The glossarist user is not in the list");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.