Solve The First Click

1 · Gleb Bahmutov · April 22, 2022, 8:07 p.m.
Recently I wrote a blog post Cypress Module Problem where I tested a sample Svelte Kit application bahmutov/my-svelte-app. The simple test I wrote just confirmed the home page Counter application works.cypress/integration/spec.js12345678910it('counts', () => {cy.visit('/');cy.contains('[data-cy=count]', '0');const incrementSelector = '[aria-label="Increase the counter by one"]';const decrementSelector = '[aria-label="Decrease the counter by one"]';cy.get(incrementSelector).click().click();cy.con...