keycloak-scim/js/apps/admin-ui/cypress/support/pages/admin-ui/SidebarPage.ts

150 lines
3.2 KiB
TypeScript
Raw Normal View History

2022-04-19 12:25:57 +00:00
import CommonElements from "../CommonElements";
export default class SidebarPage extends CommonElements {
#realmsDrpDwn = "realmSelectorToggle";
#createRealmBtn = "add-realm";
#clientsBtn = "#nav-item-clients";
#clientScopesBtn = "#nav-item-client-scopes";
#realmRolesBtn = "#nav-item-roles";
#usersBtn = "#nav-item-users";
#groupsBtn = "#nav-item-groups";
#sessionsBtn = "#nav-item-sessions";
#eventsBtn = "#nav-item-events";
#realmSettingsBtn = "#nav-item-realm-settings";
#authenticationBtn = "#nav-item-authentication";
#identityProvidersBtn = "#nav-item-identity-providers";
#userFederationBtn = "#nav-item-user-federation";
2021-01-27 12:56:28 +00:00
2022-04-06 09:21:04 +00:00
showCurrentRealms(length: number) {
cy.findByTestId(this.#realmsDrpDwn).click();
cy.get('[data-testid="realmSelector"] li').should(
"have.length",
length + 1, // account for button
);
cy.findByTestId(this.#realmsDrpDwn).click({ force: true });
2022-04-06 09:21:04 +00:00
}
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) {
this.waitForPageLoad();
cy.findByTestId(this.#realmsDrpDwn)
.click()
.parent()
.contains(realmName)
.click();
this.waitForPageLoad();
2021-01-27 12:56:28 +00:00
return this;
}
goToCreateRealm() {
this.waitForPageLoad();
cy.findByTestId(this.#realmsDrpDwn).click();
cy.findByTestId(this.#createRealmBtn).click();
this.waitForPageLoad();
2021-01-27 12:56:28 +00:00
return this;
}
goToClients() {
this.waitForPageLoad();
cy.get(this.#clientsBtn).click({ force: true });
this.waitForPageLoad();
2021-01-27 12:56:28 +00:00
return this;
}
goToClientScopes() {
this.waitForPageLoad();
cy.get(this.#clientScopesBtn).click();
this.waitForPageLoad();
2021-01-27 12:56:28 +00:00
return this;
}
goToRealmRoles() {
cy.get(this.#realmRolesBtn).click();
this.waitForPageLoad();
2021-01-27 12:56:28 +00:00
return this;
}
goToUsers() {
this.waitForPageLoad();
cy.get(this.#usersBtn).click();
this.waitForPageLoad();
2021-01-27 12:56:28 +00:00
return this;
}
goToGroups() {
this.waitForPageLoad();
cy.get(this.#groupsBtn).click();
this.waitForPageLoad();
2021-01-27 12:56:28 +00:00
return this;
}
goToSessions() {
this.waitForPageLoad();
cy.get(this.#sessionsBtn).click();
this.waitForPageLoad();
2021-01-27 12:56:28 +00:00
return this;
}
goToEvents() {
this.waitForPageLoad();
cy.get(this.#eventsBtn).click();
this.waitForPageLoad();
2021-01-27 12:56:28 +00:00
return this;
}
goToRealmSettings() {
this.waitForPageLoad();
cy.get(this.#realmSettingsBtn).click({ force: true });
this.waitForPageLoad();
2021-01-27 12:56:28 +00:00
return this;
}
goToAuthentication() {
this.waitForPageLoad();
cy.get(this.#authenticationBtn).click();
this.waitForPageLoad();
2021-01-27 12:56:28 +00:00
return this;
}
goToIdentityProviders() {
this.waitForPageLoad();
cy.get(this.#identityProvidersBtn).click();
this.waitForPageLoad();
2021-01-27 12:56:28 +00:00
return this;
}
goToUserFederation() {
this.waitForPageLoad();
cy.get(this.#userFederationBtn).click();
this.waitForPageLoad();
2021-01-27 12:56:28 +00:00
return this;
}
waitForPageLoad() {
cy.get('[role="progressbar"]').should("not.exist");
return this;
}
checkRealmSettingsLinkContainsText(expectedText: string) {
cy.get(this.#realmSettingsBtn).should("contain", expectedText);
}
2021-01-27 12:56:28 +00:00
}