|
|
@@ -1,214 +1,248 @@
|
|
|
-context('Access to sidebar', () => {
|
|
|
+describe('Access to sidebar', () => {
|
|
|
const ssPrefix = 'access-to-sidebar-';
|
|
|
|
|
|
- beforeEach(() => {
|
|
|
- // login
|
|
|
- cy.fixture("user-admin.json").then(user => {
|
|
|
- cy.login(user.username, user.password);
|
|
|
- });
|
|
|
- // collapse sidebar
|
|
|
- cy.collapseSidebar(false);
|
|
|
- });
|
|
|
-
|
|
|
- it('Successfully show/collapse sidebar', () => {
|
|
|
- cy.visit('/');
|
|
|
- cy.waitUntilSkeletonDisappear();
|
|
|
-
|
|
|
- cy.get('.grw-pagetree').should('be.visible');
|
|
|
- cy.screenshot(`${ssPrefix}-1-sidebar-shown`, {capture: 'viewport'});
|
|
|
-
|
|
|
- cy.getByTestid('grw-navigation-resize-button').click({force: true});
|
|
|
- cy.screenshot(`${ssPrefix}-2-sidebar-collapsed`, {capture: 'viewport'});
|
|
|
- });
|
|
|
-
|
|
|
- it('Successfully access recent changes side bar ', () => {
|
|
|
- cy.visit('/');
|
|
|
- cy.waitUntilSkeletonDisappear();
|
|
|
-
|
|
|
- cy.getByTestid('grw-sidebar-nav-primary-recent-changes').click();
|
|
|
- cy.getByTestid('grw-contextual-navigation-sub').then(($el) => {
|
|
|
- if($el.hasClass('d-none')){
|
|
|
- cy.getByTestid('grw-navigation-resize-button').click({force: true});
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- cy.getByTestid('grw-recent-changes').should('be.visible');
|
|
|
- cy.get('.list-group-item').should('be.visible');
|
|
|
-
|
|
|
- cy.scrollTo('top');
|
|
|
- cy.screenshot(`${ssPrefix}recent-changes-1-page-list`);
|
|
|
-
|
|
|
- cy.get('#grw-sidebar-contents-wrapper').within(() => {
|
|
|
- cy.get('#recentChangesResize').click({force: true});
|
|
|
- cy.get('.list-group-item').should('be.visible');
|
|
|
- });
|
|
|
-
|
|
|
- cy.scrollTo('top');
|
|
|
- cy.screenshot(`${ssPrefix}recent-changes-2-switch-sidebar-size`);
|
|
|
- });
|
|
|
-
|
|
|
- it('Successfully create a custom sidebar page', () => {
|
|
|
- cy.visit('/');
|
|
|
- cy.waitUntilSkeletonDisappear();
|
|
|
-
|
|
|
- cy.getByTestid('grw-sidebar-nav-primary-custom-sidebar').click();
|
|
|
- cy.getByTestid('grw-contextual-navigation-sub').then(($el) => {
|
|
|
- if($el.hasClass('d-none')){
|
|
|
- cy.getByTestid('grw-navigation-resize-button').click({force: true});
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- cy.getByTestid('grw-contextual-navigation-sub').screenshot(`${ssPrefix}custom-sidebar-1-click-on-custom-sidebar`);
|
|
|
-
|
|
|
- // create /Sidebar contents
|
|
|
- const content = '# HELLO \n ## Hello\n ### Hello';
|
|
|
- cy.get('.grw-sidebar-content-header.h5').find('a').click();
|
|
|
- cy.get('.CodeMirror textarea').type(content, {force: true});
|
|
|
- cy.screenshot(`${ssPrefix}custom-sidebar-2-custom-sidebar-editor`);
|
|
|
- cy.getByTestid('save-page-btn').click();
|
|
|
- cy.get('.layout-root').should('not.have.class', 'editing');
|
|
|
-
|
|
|
- // What to do when UserUISettings is not saved in time
|
|
|
- cy.getByTestid('grw-sidebar-nav-primary-custom-sidebar').then(($el) => {
|
|
|
- if (!$el.hasClass('active')) {
|
|
|
- cy.wrap($el).click();
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- cy.get('.grw-custom-sidebar-content').should('be.visible');
|
|
|
- cy.getByTestid('grw-contextual-navigation-sub').screenshot(`${ssPrefix}custom-sidebar-3-custom-sidebar-created`);
|
|
|
- });
|
|
|
-
|
|
|
- it('Successfully performed page operation from "page tree"', () => {
|
|
|
- cy.visit('/');
|
|
|
- cy.waitUntilSkeletonDisappear();
|
|
|
- cy.scrollTo('top');
|
|
|
-
|
|
|
- // access default page tree
|
|
|
- cy.getByTestid('grw-sidebar-nav-primary-page-tree').click();
|
|
|
- cy.getByTestid('grw-contextual-navigation-sub').then(($el) => {
|
|
|
- if($el.hasClass('d-none')){
|
|
|
- cy.getByTestid('grw-navigation-resize-button').click({force: true});
|
|
|
- }
|
|
|
- });
|
|
|
- cy.getByTestid('grw-contextual-navigation-sub').screenshot(`${ssPrefix}page-tree-1-access-to-page-tree`);
|
|
|
-
|
|
|
- // hide page tree items
|
|
|
- cy.getByTestid('grw-contextual-navigation-sub').should('be.visible');
|
|
|
- cy.get('.grw-pagetree-triangle-btn').eq(0).click();
|
|
|
- cy.getByTestid('grw-contextual-navigation-sub').screenshot(`${ssPrefix}page-tree-2-hide-page-tree-item`);
|
|
|
-
|
|
|
- // show page tree three dots menu dropdown, check dropdown menu
|
|
|
- cy.get('.grw-pagetree-triangle-btn').eq(0).click();
|
|
|
- cy.get('.grw-pagetree-item-children').eq(0).within(() => {
|
|
|
- cy.getByTestid('open-page-item-control-btn').find('button').eq(0).invoke('css','display','block').click();
|
|
|
- });
|
|
|
- cy.getByTestid('page-item-control-menu').should('have.class', 'show').first().within(() => {
|
|
|
- cy.get('.grw-page-control-dropdown-icon').should('be.visible');
|
|
|
- cy.screenshot(`${ssPrefix}page-tree-3-click-three-dots-menu`);
|
|
|
- });
|
|
|
-
|
|
|
- // Click Add to Bookmarks, check dropdown menu
|
|
|
- cy.get('.dropdown-menu.show').should('be.visible').within(() => {
|
|
|
- cy.getByTestid('add-remove-bookmark-btn').click();
|
|
|
- });
|
|
|
- cy.get('.grw-pagetree-item-children').eq(0).within(() => {
|
|
|
- cy.getByTestid('open-page-item-control-btn').find('button').eq(0).invoke('css','display','block').click();
|
|
|
- });
|
|
|
- cy.getByTestid('page-item-control-menu').should('have.class', 'show').first().within(() => {
|
|
|
- cy.get('.grw-page-control-dropdown-icon').should('be.visible');
|
|
|
- cy.screenshot(`${ssPrefix}page-tree-4-add-bookmark`);
|
|
|
+ context('when logged in', () => {
|
|
|
+ beforeEach(() => {
|
|
|
+ // login
|
|
|
+ cy.fixture("user-admin.json").then(user => {
|
|
|
+ cy.login(user.username, user.password);
|
|
|
+ });
|
|
|
});
|
|
|
|
|
|
- // Check duplicate page modal
|
|
|
- cy.get('.grw-pagetree-item-children').eq(0).within(() => {
|
|
|
- cy.getByTestid('open-page-item-control-btn').find('button').eq(0).invoke('css','display','block').click();
|
|
|
- });
|
|
|
- cy.get('.dropdown-menu.show').should('be.visible').within(() => {
|
|
|
- cy.getByTestid('open-page-duplicate-modal-btn').click();
|
|
|
- });
|
|
|
- cy.getByTestid('page-duplicate-modal').should('be.visible').within(() => {
|
|
|
- cy.get('.rbt-input-main').type('_test');
|
|
|
- cy.screenshot(`${ssPrefix}page-tree-5-duplicate-page`);
|
|
|
- cy.get('.modal-header > button').click();
|
|
|
- });
|
|
|
+ context('when access to root page', () => {
|
|
|
+ beforeEach(() => {
|
|
|
+ cy.visit('/');
|
|
|
+ cy.waitUntilSkeletonDisappear();
|
|
|
+ cy.collapseSidebar(false);
|
|
|
+ cy.scrollTo('top');
|
|
|
+ });
|
|
|
|
|
|
- // Check rename page
|
|
|
- cy.get('.grw-pagetree-item-children').eq(0).within(() => {
|
|
|
- cy.getByTestid('open-page-item-control-btn').find('button').eq(0).invoke('css','display','block').click()
|
|
|
- });
|
|
|
- cy.get('.dropdown-menu.show').should('be.visible').within(() => {
|
|
|
- cy.getByTestid('open-page-move-rename-modal-btn').click();
|
|
|
- });
|
|
|
- cy.get('.grw-pagetree-item-children').eq(0).within(() => {
|
|
|
- cy.getByTestid('closable-text-input').type('_newname');
|
|
|
- });
|
|
|
- cy.getByTestid('grw-contextual-navigation-sub').screenshot(`${ssPrefix}page-tree-6-rename-page`);
|
|
|
+ describe('Test show/collapse fetures', () => {
|
|
|
+ it('Successfully show sidebar', () => {
|
|
|
+ cy.get('.grw-pagetree').should('be.visible');
|
|
|
+ cy.screenshot(`${ssPrefix}-1-sidebar-shown`, {capture: 'viewport'});
|
|
|
+ });
|
|
|
|
|
|
- // Check delete page modal
|
|
|
- cy.get('body').click(0,0);
|
|
|
- cy.get('.grw-pagetree-item-children').eq(0).within(() => {
|
|
|
- cy.getByTestid('open-page-item-control-btn').find('button').eq(0).invoke('css','display','block').click()
|
|
|
- });
|
|
|
- cy.get('.dropdown-menu.show').should('be.visible').within(() => {
|
|
|
- cy.getByTestid('open-page-delete-modal-btn').click();
|
|
|
- });
|
|
|
- cy.getByTestid('page-delete-modal').should('be.visible').within(() => {
|
|
|
- cy.screenshot(`${ssPrefix}page-tree-7-delete-page`);
|
|
|
- cy.get('.modal-header > button').click();
|
|
|
- });
|
|
|
- });
|
|
|
+ it('Successfully collapse sidebar', () => {
|
|
|
+ cy.getByTestid('grw-navigation-resize-button').click({force: true});
|
|
|
+ cy.screenshot(`${ssPrefix}-2-sidebar-collapsed`, {capture: 'viewport'});
|
|
|
+ });
|
|
|
+ });
|
|
|
|
|
|
- it('Successfully performed page operation from "Tags" ', () => {
|
|
|
- cy.visit('/');
|
|
|
- cy.waitUntilSkeletonDisappear();
|
|
|
+ describe('Test access recent changes', () => {
|
|
|
+ it('Successfully page list', () => {
|
|
|
+ cy.getByTestid('grw-sidebar-nav-primary-recent-changes').click();
|
|
|
+ cy.getByTestid('grw-contextual-navigation-sub').then(($el) => {
|
|
|
+ if($el.hasClass('d-none')){
|
|
|
+ cy.getByTestid('grw-navigation-resize-button').click({force: true});
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ cy.getByTestid('grw-recent-changes').should('be.visible');
|
|
|
+ cy.get('.list-group-item').should('be.visible');
|
|
|
+
|
|
|
+ cy.scrollTo('top');
|
|
|
+ cy.screenshot(`${ssPrefix}recent-changes-1-page-list`);
|
|
|
+ });
|
|
|
+
|
|
|
+ it('Successfully switch sidebar size', () => {
|
|
|
+ cy.get('#grw-sidebar-contents-wrapper').within(() => {
|
|
|
+ cy.get('#recentChangesResize').click({force: true});
|
|
|
+ cy.get('.list-group-item').should('be.visible');
|
|
|
+ });
|
|
|
+
|
|
|
+ cy.scrollTo('top');
|
|
|
+ cy.screenshot(`${ssPrefix}recent-changes-2-switch-sidebar-size`);
|
|
|
+ });
|
|
|
+ });
|
|
|
|
|
|
- cy.getByTestid('grw-sidebar-nav-primary-tags').click();
|
|
|
- cy.getByTestid('grw-contextual-navigation-sub').then(($el) => {
|
|
|
- if($el.hasClass('d-none')){
|
|
|
- cy.getByTestid('grw-navigation-resize-button').click({force: true});
|
|
|
- }
|
|
|
- });
|
|
|
- cy.getByTestid('grw-contextual-navigation-sub').screenshot(`${ssPrefix}tags-1-access-to-tags`);
|
|
|
+ describe('Test access custom sidebar', () => {
|
|
|
+ it('Successfully click-on-custom-sidebar', () => {
|
|
|
+ cy.getByTestid('grw-sidebar-nav-primary-custom-sidebar').click();
|
|
|
+ cy.getByTestid('grw-contextual-navigation-sub').then(($el) => {
|
|
|
+ if($el.hasClass('d-none')){
|
|
|
+ cy.getByTestid('grw-navigation-resize-button').click({force: true});
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ cy.getByTestid('grw-contextual-navigation-sub').within(() => {
|
|
|
+ cy.get('.grw-custom-sidebar-content').should('be.visible');
|
|
|
+ cy.screenshot(`${ssPrefix}custom-sidebar-1-click-on-custom-sidebar`);
|
|
|
+ });
|
|
|
+ });
|
|
|
+
|
|
|
+ it('Successfully create /Sidebar contents', () => {
|
|
|
+ const content = '# HELLO \n ## Hello\n ### Hello';
|
|
|
+
|
|
|
+ cy.get('.grw-sidebar-content-header.h5').find('a').click();
|
|
|
+ cy.get('.CodeMirror textarea').type(content, {force: true});
|
|
|
+ cy.screenshot(`${ssPrefix}custom-sidebar-2-custom-sidebar-editor`);
|
|
|
+ cy.getByTestid('save-page-btn').click();
|
|
|
+ cy.get('.layout-root').should('not.have.class', 'editing');
|
|
|
+ });
|
|
|
+
|
|
|
+ it('Successfully custom-sidebar-created', () => {
|
|
|
+ // What to do when UserUISettings is not saved in time
|
|
|
+ cy.getByTestid('grw-sidebar-nav-primary-custom-sidebar').then(($el) => {
|
|
|
+ if (!$el.hasClass('active')) {
|
|
|
+ cy.wrap($el).click();
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ cy.getByTestid('grw-contextual-navigation-sub').within(() => {
|
|
|
+ cy.get('.grw-custom-sidebar-content').should('be.visible');
|
|
|
+ cy.screenshot(`${ssPrefix}custom-sidebar-3-custom-sidebar-created`);
|
|
|
+ });
|
|
|
+ });
|
|
|
+ });
|
|
|
|
|
|
- cy.get('.grw-container-convertible > div > .btn-primary').click({force: true});
|
|
|
- cy.collapseSidebar(true);
|
|
|
- cy.screenshot(`${ssPrefix}tags-2-check-all-tags`);
|
|
|
- });
|
|
|
+ describe('Test page operation from "page tree"', () => {
|
|
|
+ it('Successfully access to page tree tab', () => {
|
|
|
+ cy.getByTestid('grw-sidebar-nav-primary-page-tree').click();
|
|
|
+
|
|
|
+ cy.getByTestid('grw-contextual-navigation-sub').then(($el) => {
|
|
|
+ if($el.hasClass('d-none')){
|
|
|
+ cy.getByTestid('grw-navigation-resize-button').click({force: true});
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ cy.getByTestid('grw-contextual-navigation-sub').within(() => {
|
|
|
+ cy.get('.grw-pagetree').should('be.visible');
|
|
|
+ cy.screenshot(`${ssPrefix}page-tree-1-access-to-page-tree`);
|
|
|
+ });
|
|
|
+ });
|
|
|
+
|
|
|
+ it('Successfully hide page tree items', () => {
|
|
|
+ cy.getByTestid('grw-contextual-navigation-sub').within(() => {
|
|
|
+ cy.get('.grw-pagetree-open').should('be.visible');
|
|
|
+
|
|
|
+ // hide page tree tiems
|
|
|
+ cy.get('.grw-pagetree-triangle-btn').eq(0).click();
|
|
|
+ cy.screenshot(`${ssPrefix}page-tree-2-hide-page-tree-item`);
|
|
|
+ });
|
|
|
+ });
|
|
|
+
|
|
|
+ it('Successfully Click Add to Bookmarks, check dropdown menu', () => {
|
|
|
+ // TODO: check text
|
|
|
+
|
|
|
+ // click three dots
|
|
|
+ cy.get('.grw-pagetree-item-children').eq(0).within(() => {
|
|
|
+ cy.getByTestid('open-page-item-control-btn').find('button').eq(0).invoke('css','display','block').click();
|
|
|
+ });
|
|
|
+
|
|
|
+ cy.scrollTo('top');
|
|
|
+ cy.getByTestid('page-item-control-menu').should('have.class', 'show');
|
|
|
+ cy.screenshot(`${ssPrefix}page-tree-3-click-three-dots-menu`);
|
|
|
+
|
|
|
+ // click add remove bookmark btn
|
|
|
+ cy.getByTestid('page-item-control-menu').should('have.class', 'show').within(() => {
|
|
|
+ cy.getByTestid('add-remove-bookmark-btn').click();
|
|
|
+ });
|
|
|
+
|
|
|
+ // show dropdown again
|
|
|
+ cy.get('.grw-pagetree-item-children').eq(0).within(() => {
|
|
|
+ cy.getByTestid('open-page-item-control-btn').find('button').eq(0).invoke('css','display','block').click();
|
|
|
+ });
|
|
|
+
|
|
|
+ cy.scrollTo('top');
|
|
|
+ cy.getByTestid('page-item-control-menu').should('have.class', 'show');
|
|
|
+ cy.screenshot(`${ssPrefix}page-tree-4-add-bookmark`);
|
|
|
+ });
|
|
|
+
|
|
|
+ it('Successfully duplicate page modal', () => {
|
|
|
+ cy.get('.grw-pagetree-item-children').eq(0).within(() => {
|
|
|
+ cy.getByTestid('open-page-item-control-btn').find('button').eq(0).invoke('css','display','block').click();
|
|
|
+ });
|
|
|
+ cy.get('.dropdown-menu.show').should('be.visible').within(() => {
|
|
|
+ cy.getByTestid('open-page-duplicate-modal-btn').click();
|
|
|
+ });
|
|
|
+ cy.getByTestid('page-duplicate-modal').should('be.visible').within(() => {
|
|
|
+ cy.get('.rbt-input-main').type('_test');
|
|
|
+ cy.screenshot(`${ssPrefix}page-tree-5-duplicate-page`);
|
|
|
+ });
|
|
|
+ });
|
|
|
+
|
|
|
+ it('Successfully check rename page', () => {
|
|
|
+ cy.getByTestid('grw-contextual-navigation-sub').within(() => {
|
|
|
+ cy.get('.grw-pagetree-item-children').eq(0).within(() => {
|
|
|
+ cy.getByTestid('open-page-item-control-btn').find('button').eq(0).invoke('css','display','block').click()
|
|
|
+ });
|
|
|
+ cy.get('.dropdown-menu.show').should('be.visible').within(() => {
|
|
|
+ cy.getByTestid('open-page-move-rename-modal-btn').click();
|
|
|
+ });
|
|
|
+ cy.get('.grw-pagetree-item-children').eq(0).within(() => {
|
|
|
+ cy.getByTestid('closable-text-input').type('_newname');
|
|
|
+ });
|
|
|
+ cy.screenshot(`${ssPrefix}page-tree-6-rename-page`);
|
|
|
+ });
|
|
|
+ });
|
|
|
+
|
|
|
+ it('Successfully Check delete page modal', () => {
|
|
|
+ cy.get('body').click(0,0);
|
|
|
+ cy.get('.grw-pagetree-item-children').eq(0).within(() => {
|
|
|
+ cy.getByTestid('open-page-item-control-btn').find('button').eq(0).invoke('css','display','block').click()
|
|
|
+ });
|
|
|
+ cy.get('.dropdown-menu.show').should('be.visible').within(() => {
|
|
|
+ cy.getByTestid('open-page-delete-modal-btn').click();
|
|
|
+ });
|
|
|
+ cy.getByTestid('page-delete-modal').should('be.visible').within(() => {
|
|
|
+ cy.screenshot(`${ssPrefix}page-tree-7-delete-page`);
|
|
|
+ });
|
|
|
+ });
|
|
|
+ });
|
|
|
|
|
|
- // TODO: No Draft pages on GROWI version 6
|
|
|
- // it('Successfully access to My Drafts page', () => {
|
|
|
- // cy.visit('/');
|
|
|
- // cy.collapseSidebar(true);
|
|
|
- // cy.get('.grw-sidebar-nav-secondary-container').within(() => {
|
|
|
- // cy.get('a[href*="/me/drafts"]').click();
|
|
|
- // });
|
|
|
- // cy.screenshot(`${ssPrefix}access-to-drafts-page`);
|
|
|
- // });
|
|
|
-
|
|
|
- it('Successfully access to GROWI Docs page', () => {
|
|
|
- cy.visit('/');
|
|
|
- cy.waitUntilSkeletonDisappear();
|
|
|
-
|
|
|
- cy.get('.grw-sidebar-nav-secondary-container').within(() => {
|
|
|
- cy.get('a[href*="https://docs.growi.org"]').then(($a) => {
|
|
|
- const url = $a.prop('href')
|
|
|
- cy.request(url).its('body').should('include', '</html>');
|
|
|
+ describe('Test page operation from "Tags"', () => {
|
|
|
+ it('Successfully access-to-tags', () => {
|
|
|
+ cy.getByTestid('grw-sidebar-nav-primary-tags').click();
|
|
|
+ cy.getByTestid('grw-contextual-navigation-sub').then(($el) => {
|
|
|
+ if($el.hasClass('d-none')){
|
|
|
+ cy.getByTestid('grw-navigation-resize-button').click({force: true});
|
|
|
+ }
|
|
|
+ });
|
|
|
+ cy.getByTestid('grw-contextual-navigation-sub').within(() => {
|
|
|
+ cy.getByTestid('grw-tags-list').should('be.visible');
|
|
|
+ cy.screenshot(`${ssPrefix}tags-1-access-to-tags`);
|
|
|
+ });
|
|
|
+
|
|
|
+ cy.get('.grw-container-convertible > div > .btn-primary').click({force: true});
|
|
|
+ cy.collapseSidebar(true);
|
|
|
+ cy.screenshot(`${ssPrefix}tags-2-check-all-tags`);
|
|
|
+ });
|
|
|
});
|
|
|
- });
|
|
|
- });
|
|
|
|
|
|
- it('Successfully access to trash page', () => {
|
|
|
- cy.visit('/');
|
|
|
- cy.waitUntilSkeletonDisappear();
|
|
|
+ // TODO: No Draft pages on GROWI version 6
|
|
|
+ // it('Successfully access to My Drafts page', () => {
|
|
|
+ // cy.visit('/');
|
|
|
+ // cy.collapseSidebar(true);
|
|
|
+ // cy.get('.grw-sidebar-nav-secondary-container').within(() => {
|
|
|
+ // cy.get('a[href*="/me/drafts"]').click();
|
|
|
+ // });
|
|
|
+ // cy.screenshot(`${ssPrefix}access-to-drafts-page`);
|
|
|
+ // });
|
|
|
+
|
|
|
+ describe('Test access to GROWI Docs page', () => {
|
|
|
+ it('Successfully access to GROWI Docs page', () => {
|
|
|
+ cy.get('.grw-sidebar-nav-secondary-container').within(() => {
|
|
|
+ cy.get('a[href*="https://docs.growi.org"]').then(($a) => {
|
|
|
+ const url = $a.prop('href')
|
|
|
+ cy.request(url).its('body').should('include', '</html>');
|
|
|
+ });
|
|
|
+ });
|
|
|
+ });
|
|
|
+ });
|
|
|
|
|
|
- cy.collapseSidebar(true);
|
|
|
- cy.get('.grw-sidebar-nav-secondary-container').within(() => {
|
|
|
- cy.get('a[href*="/trash"]').click();
|
|
|
+ describe('Test access to trash page', () => {
|
|
|
+ it('Successfully access to trash page', () => {
|
|
|
+ cy.collapseSidebar(true);
|
|
|
+ cy.get('.grw-sidebar-nav-secondary-container').within(() => {
|
|
|
+ cy.get('a[href*="/trash"]').click();
|
|
|
+ });
|
|
|
+
|
|
|
+ cy.get('.grw-page-path-hierarchical-link').should('be.visible');
|
|
|
+ cy.get('.grw-custom-nav-tab').should('be.visible');
|
|
|
+ cy.screenshot(`${ssPrefix}access-to-trash-page`);
|
|
|
+ });
|
|
|
+ });
|
|
|
});
|
|
|
-
|
|
|
- cy.get('.grw-page-path-hierarchical-link').should('be.visible');
|
|
|
- cy.get('.grw-custom-nav-tab').should('be.visible');
|
|
|
- cy.screenshot(`${ssPrefix}access-to-trash-page`);
|
|
|
});
|
|
|
});
|