mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
16 lines
340 B
JavaScript
16 lines
340 B
JavaScript
import { When } from "cypress-cucumber-preprocessor/steps";
|
|
|
|
When("I log out", () => {
|
|
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")
|
|
.find('a[href="/logout"]')
|
|
.click();
|
|
});
|