How to stop carousel slider in Cypress?

Viewed 402

When I am using Cypress.$('.banner-carousel').carousel({interval: false,}); to stop the slider I am getting Cypress.$(...).carousel is not a function error. How can I stop the slider otherwise?

1 Answers

I used cy.clock() and it solved my problem as my carousel was based on setInterval().

Related