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

67 lines
1.3 KiB
TypeScript
Raw Normal View History

export default class Masthead {
2021-01-27 12:56:28 +00:00
menuBtn: string;
logoBtn: string;
helpBtn: string;
userDrpDwn: string;
userDrpDwnKebab: string;
isMobile: boolean;
constructor() {
this.menuBtn = "#nav-toggle";
this.logoBtn = "#masthead-logo";
this.helpBtn = "#help";
this.userDrpDwn = "#user-dropdown";
this.userDrpDwnKebab = "#user-dropdown-kebab";
this.isMobile = false;
}
isAdminConsole() {
cy.get(this.logoBtn).should("exist");
cy.get(this.userDrpDwn).should("exist");
return this;
}
get isMobileMode() {
return this.isMobile;
}
setMobileMode(isMobileMode: boolean) {
this.isMobile = isMobileMode;
if (isMobileMode) {
cy.viewport("iphone-6");
} else {
2021-01-27 12:56:28 +00:00
cy.viewport(1024, 768);
}
}
toggleGlobalHelp() {
cy.get(this.helpBtn).click();
cy.get("#enableHelp").click({ force: true });
}
userDropdown() {
if (this.isMobileMode) {
return cy.get(this.userDrpDwnKebab);
} else {
return cy.get(this.userDrpDwn);
}
}
signOut() {
this.userDropdown().click();
cy.get("#sign-out").click();
}
accountManagement() {
this.userDropdown().click();
cy.get("#manage-account").click();
}
checkNotificationMessage(message: string) {
cy.contains(message).should("exist");
return this;
}
}