5949fd43d0
* removed deprecated select Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * some more deprecation removal working towards fixing: #28197 Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed tests Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * changed to use new api Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * more deprecation removal Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed merge error Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fix tests Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * small fix Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed tests Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed merge error Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * no more default text for SelectOption Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed tests Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed tests Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed test Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed test Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed tests Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed tests Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed test Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed tests Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed test Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed tests Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed tests Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed tests Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * changed to use id Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed dropdown in keycloakCard and test fixes Signed-off-by: mfrances <mfrances@redhat.com> Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed lint error Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed test Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed tests Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fix dropdown/select related test failures Signed-off-by: mfrances <mfrances@redhat.com> * fixed test Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed test Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * i18n label Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fix test Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed tests Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed tests Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed test Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * removed Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> * fixed merge error Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> --------- Signed-off-by: Erik Jan de Wit <erikjan.dewit@gmail.com> Signed-off-by: mfrances <mfrances@redhat.com> Co-authored-by: mfrances <mfrances@redhat.com>
163 lines
3.7 KiB
TypeScript
163 lines
3.7 KiB
TypeScript
import CommonElements from "../CommonElements";
|
|
|
|
export default class SidebarPage extends CommonElements {
|
|
#realmsDrpDwn = "realmSelector";
|
|
#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";
|
|
|
|
realmsElements = '[id="realm-select"] li';
|
|
|
|
showCurrentRealms(length: number) {
|
|
cy.findByTestId(this.#realmsDrpDwn).click();
|
|
cy.get(this.realmsElements).contains("Loading realms…").should("not.exist");
|
|
cy.get(this.realmsElements).should(
|
|
"have.length",
|
|
length + 1, // account for button
|
|
);
|
|
cy.findByTestId(this.#realmsDrpDwn).click({ force: true });
|
|
|
|
return this;
|
|
}
|
|
|
|
realmExists(realmName: string, exists = true) {
|
|
cy.findByTestId(this.#realmsDrpDwn).click();
|
|
cy.get(this.realmsElements).contains("Loading realms…").should("not.exist");
|
|
cy.get(this.realmsElements)
|
|
.contains(realmName)
|
|
.should((exists ? "" : "not.") + "exist");
|
|
cy.findByTestId(this.#realmsDrpDwn).click();
|
|
|
|
return this;
|
|
}
|
|
|
|
getCurrentRealm() {
|
|
return cy.findByTestId(this.#realmsDrpDwn).scrollIntoView().invoke("text");
|
|
}
|
|
|
|
goToRealm(realmName: string) {
|
|
this.waitForPageLoad();
|
|
cy.findByTestId(this.#realmsDrpDwn).click();
|
|
cy.get(this.realmsElements).contains("Loading realms…").should("not.exist");
|
|
cy.get(this.realmsElements).contains(realmName).click();
|
|
this.waitForPageLoad();
|
|
|
|
return this;
|
|
}
|
|
|
|
goToCreateRealm() {
|
|
this.waitForPageLoad();
|
|
cy.findByTestId(this.#realmsDrpDwn).click();
|
|
cy.findByTestId(this.#createRealmBtn).click();
|
|
this.waitForPageLoad();
|
|
|
|
return this;
|
|
}
|
|
|
|
goToClients() {
|
|
this.waitForPageLoad();
|
|
cy.get(this.#clientsBtn).click({ force: true });
|
|
this.waitForPageLoad();
|
|
|
|
return this;
|
|
}
|
|
|
|
goToClientScopes() {
|
|
this.waitForPageLoad();
|
|
cy.get(this.#clientScopesBtn).click();
|
|
this.waitForPageLoad();
|
|
|
|
return this;
|
|
}
|
|
|
|
goToRealmRoles() {
|
|
cy.get(this.#realmRolesBtn).click();
|
|
this.waitForPageLoad();
|
|
|
|
return this;
|
|
}
|
|
|
|
goToUsers() {
|
|
this.waitForPageLoad();
|
|
cy.get(this.#usersBtn).click();
|
|
this.waitForPageLoad();
|
|
|
|
return this;
|
|
}
|
|
|
|
goToGroups() {
|
|
this.waitForPageLoad();
|
|
cy.get(this.#groupsBtn).click();
|
|
this.waitForPageLoad();
|
|
|
|
return this;
|
|
}
|
|
|
|
goToSessions() {
|
|
this.waitForPageLoad();
|
|
cy.get(this.#sessionsBtn).click();
|
|
this.waitForPageLoad();
|
|
|
|
return this;
|
|
}
|
|
|
|
goToEvents() {
|
|
this.waitForPageLoad();
|
|
cy.get(this.#eventsBtn).click();
|
|
this.waitForPageLoad();
|
|
|
|
return this;
|
|
}
|
|
|
|
goToRealmSettings() {
|
|
this.waitForPageLoad();
|
|
cy.get(this.#realmSettingsBtn).click({ force: true });
|
|
this.waitForPageLoad();
|
|
|
|
return this;
|
|
}
|
|
|
|
goToAuthentication() {
|
|
this.waitForPageLoad();
|
|
cy.get(this.#authenticationBtn).click();
|
|
this.waitForPageLoad();
|
|
|
|
return this;
|
|
}
|
|
|
|
goToIdentityProviders() {
|
|
this.waitForPageLoad();
|
|
cy.get(this.#identityProvidersBtn).click();
|
|
this.waitForPageLoad();
|
|
|
|
return this;
|
|
}
|
|
|
|
goToUserFederation() {
|
|
this.waitForPageLoad();
|
|
cy.get(this.#userFederationBtn).click();
|
|
this.waitForPageLoad();
|
|
|
|
return this;
|
|
}
|
|
|
|
waitForPageLoad() {
|
|
cy.get('[role="progressbar"]').should("not.exist");
|
|
return this;
|
|
}
|
|
|
|
checkRealmSettingsLinkContainsText(expectedText: string) {
|
|
cy.get(this.#realmSettingsBtn).should("contain", expectedText);
|
|
}
|
|
}
|