mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-20 20:01:31 +00:00
18 lines
319 B
TypeScript
18 lines
319 B
TypeScript
/// <reference types="cypress" />
|
|
|
|
export class SideNavMenu {
|
|
// selectors
|
|
profileMenu = "[data-test=profile-menu]";
|
|
logoutMenu = "[data-test=logout-menu]";
|
|
|
|
openUserProfile() {
|
|
cy.get(this.profileMenu).click();
|
|
return this;
|
|
}
|
|
|
|
logout() {
|
|
cy.get(this.logoutMenu).click();
|
|
return this;
|
|
}
|
|
}
|