keycloak-scim/cypress/support/pages/admin_console/SidebarPage.ts

110 lines
2.3 KiB
TypeScript
Raw Normal View History

2021-01-27 12:56:28 +00:00
export default class SidebarPage {
private realmsDrpDwn = "realmSelectorToggle";
private realmsList = "realmSelector";
private createRealmBtn = "add-realm";
private clientsBtn = "#nav-item-clients";
private clientScopesBtn = "#nav-item-client-scopes";
private realmRolesBtn = "#nav-item-roles";
private usersBtn = "#nav-item-users";
private groupsBtn = "#nav-item-groups";
private sessionsBtn = "#nav-item-sessions";
private eventsBtn = "#nav-item-events";
private realmSettingsBtn = "#nav-item-realm-settings";
private authenticationBtn = "#nav-item-authentication";
private identityProvidersBtn = "#nav-item-identity-providers";
private userFederationBtn = "#nav-item-user-federation";
2021-01-27 12:56:28 +00:00
getCurrentRealm() {
return cy.findByTestId(this.realmsDrpDwn).scrollIntoView().invoke("text");
2021-01-27 12:56:28 +00:00
}
goToRealm(realmName: string) {
cy.findByTestId(this.realmsDrpDwn).scrollIntoView().click();
cy.findByTestId(this.realmsList).get("ul").contains(realmName).click();
2021-01-27 12:56:28 +00:00
return this;
}
goToCreateRealm() {
cy.findByTestId(this.realmsDrpDwn).scrollIntoView();
cy.findByTestId(this.realmsDrpDwn).click();
cy.findByTestId(this.createRealmBtn).click();
2021-01-27 12:56:28 +00:00
return this;
}
goToClients() {
cy.get(this.clientsBtn).scrollIntoView().click();
2021-01-27 12:56:28 +00:00
return this;
}
goToClientScopes() {
cy.get(this.clientScopesBtn).scrollIntoView().click();
2021-01-27 12:56:28 +00:00
return this;
}
goToRealmRoles() {
cy.get(this.realmRolesBtn).click();
return this;
}
goToUsers() {
cy.get(this.usersBtn).click();
return this;
}
goToGroups() {
cy.get(this.groupsBtn).click();
return this;
}
goToSessions() {
cy.get(this.sessionsBtn).click();
return this;
}
goToEvents() {
cy.get(this.eventsBtn).click();
return this;
}
goToRealmSettings() {
cy.get(this.realmSettingsBtn).click();
return this;
}
goToAuthentication() {
cy.get(this.authenticationBtn).click();
return this;
}
goToIdentityProviders() {
2021-05-07 18:42:59 +00:00
cy.get(this.identityProvidersBtn).click();
2021-01-27 12:56:28 +00:00
return this;
}
goToUserFederation() {
cy.get(this.userFederationBtn).click();
2021-03-05 16:36:49 +00:00
cy.wait(1000);
2021-01-27 12:56:28 +00:00
return this;
}
waitForPageLoad() {
cy.get(".pf-c-spinner__tail-ball").should("not.exist");
return this;
}
2021-01-27 12:56:28 +00:00
}