5e63bac12e
* Implement partial realm export * Replace Switches with Checkboxes
114 lines
2.3 KiB
TypeScript
114 lines
2.3 KiB
TypeScript
import { capitalize } from "lodash";
|
|
|
|
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";
|
|
|
|
getCurrentRealm() {
|
|
return cy.findByTestId(this.realmsDrpDwn).scrollIntoView().invoke("text");
|
|
}
|
|
|
|
goToRealm(realmName: string) {
|
|
cy.findByTestId(this.realmsList).scrollIntoView().click();
|
|
cy.findByTestId(this.realmsList)
|
|
.get("ul")
|
|
.contains(capitalize(realmName))
|
|
.click();
|
|
|
|
return this;
|
|
}
|
|
|
|
goToCreateRealm() {
|
|
cy.findByTestId(this.realmsDrpDwn).scrollIntoView();
|
|
cy.findByTestId(this.realmsDrpDwn).click();
|
|
cy.findByTestId(this.createRealmBtn).click();
|
|
|
|
return this;
|
|
}
|
|
|
|
goToClients() {
|
|
cy.get(this.clientsBtn).scrollIntoView().click();
|
|
|
|
return this;
|
|
}
|
|
|
|
goToClientScopes() {
|
|
cy.get(this.clientScopesBtn).scrollIntoView().click();
|
|
|
|
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() {
|
|
cy.get(this.identityProvidersBtn).click();
|
|
|
|
return this;
|
|
}
|
|
|
|
goToUserFederation() {
|
|
cy.get(this.userFederationBtn).click();
|
|
cy.wait(1000);
|
|
|
|
return this;
|
|
}
|
|
|
|
waitForPageLoad() {
|
|
cy.get(".pf-c-spinner__tail-ball").should("not.exist");
|
|
return this;
|
|
}
|
|
}
|