cypress-components/cypress/e2e/scroll.cy.js
2025-07-10 14:01:05 +02:00

18 lines
No EOL
543 B
JavaScript

describe('template spec', () => {
beforeEach(() => {
cy.visit('./../scroll-to-top.html')
})
it('Apparition button scroll top', () => {
cy.scrollTo('bottom')
cy.get('div.fixed[ x-data ]').should('be.visible')
})
it('Retour en haut et disparition du bouton scroll top', () => {
cy.scrollTo('bottom')
cy.get('div.fixed[ x-data ]').should('be.visible')
cy.get('div.fixed[ x-data ] button').click()
cy.window().its('scrollY').should('eq', 0)
cy.get('div.fixed[ x-data ]').should('not.be.visible')
})
})