We're a place where coders share, stay up-to-date and grow their careers.
Instead of using cy.wait(100), change the default timeout property of the next command.
cy.wait(100)
It will keep retrying and solve as soon as possible, instead of waiting a fixed amount of time.
Nice to know. Thanks
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.
Nice to know. Thanks