|
|
@@ -40,7 +40,12 @@ context('Access to page', () => {
|
|
|
});
|
|
|
|
|
|
it('/Sandbox with edit is successfully loaded', () => {
|
|
|
- cy.visit('/Sandbox#edit');
|
|
|
+ cy.visit('/Sandbox');
|
|
|
+ cy.get('.grw-skelton', { timeout: 30000 }).should('not.exist');
|
|
|
+ cy.get('#grw-subnav-container').should('be.visible').within(()=>{
|
|
|
+ cy.getByTestid('editor-button').should('be.visible').click();
|
|
|
+ })
|
|
|
+ cy.getByTestid('navbar-editor', { timeout: 30000 }).should('be.visible');
|
|
|
cy.screenshot(`${ssPrefix}-sandbox-edit-page`);
|
|
|
})
|
|
|
|