DEV Community

Discussion on: Testing accessibility with Cypress

Collapse
 
laistomazz profile image
Laís Tomaz

Instead of using cy.wait(100), change the default timeout property of the next command.

It will keep retrying and solve as soon as possible, instead of waiting a fixed amount of time.

Collapse
 
stereobooster profile image
stereobooster

Nice to know. Thanks