| 123456789101112131415161718192021222324252627282930313233 |
- context('Switch sidebar mode', () => {
- const ssPrefix = 'switch-sidebar-mode-';
- let connectSid: string | undefined;
- before(() => {
- // login
- cy.fixture("user-admin.json").then(user => {
- cy.login(user.username, user.password);
- });
- cy.getCookie('connect.sid').then(cookie => {
- connectSid = cookie?.value;
- });
- });
- beforeEach(() => {
- if (connectSid != null) {
- cy.setCookie('connect.sid', connectSid);
- }
- });
- it('Switching sidebar mode', () => {
- cy.visit('/');
- cy.get('.grw-personal-dropdown').click();
- cy.get('[for="swSidebarModeOnEditor"]').click();
- cy.screenshot(`${ssPrefix}-switch-sidebar-mode`, { capture: 'viewport' });
- cy.get('[for="swSidebarModeOnEditor"]').click();
- cy.screenshot(`${ssPrefix}-switch-sidebar-mode-back`, { capture: 'viewport' });
- });
- });
|