diff --git a/cypress/e2e/1-basic/kb-settings.cy.js b/cypress/e2e/1-basic/kb-settings.cy.js index 6ab05a3..e09adca 100644 --- a/cypress/e2e/1-basic/kb-settings.cy.js +++ b/cypress/e2e/1-basic/kb-settings.cy.js @@ -25,13 +25,10 @@ describe('Change KB settings', () => { cy.loginToEmptyKb(zone); goTo('go-to-advanced'); goTo('go-to-settings'); - cy.get('.dashboard-content').scrollTo('bottom'); cy.get('[data-cy="save-kb-settings"]').get('button').should('be.disabled'); - cy.get('.dashboard-content').scrollTo('top'); cy.get(`[formcontrolname="description"] textarea`).type( '\nWhy did you say that? Now I feel like I want to delete this kb.\n' ); - cy.get('.dashboard-content').scrollTo('bottom'); cy.get('[data-cy="save-kb-settings"]').click(); cy.get('.pa-toast-wrapper').should('contain', 'The new settings have been saved successfully'); });