only scroll to top if avatar menu is not visible

This commit is contained in:
Moriz Wahl 2023-02-06 11:34:15 +01:00
parent 8bfe486034
commit f5c05de974

View File

@ -1,7 +1,12 @@
import { When } from "cypress-cucumber-preprocessor/steps";
When("I log out", () => {
cy.scrollTo('top')
cy.get(".avatar-menu").then(($menu) => {
if (!$menu.is(':visible')){
cy.scrollTo("top");
cy.wait(500);
}
})
cy.get(".avatar-menu")
.click();
cy.get(".avatar-menu-popover")