mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
18 lines
313 B
TypeScript
18 lines
313 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
|
|
}
|
|
}
|