Timeout not taking effect, even on command #24038
Unanswered
mzerfas
asked this question in
Component Testing
Replies: 1 comment
-
The timeout is applicable only to your cy.contains('button', 'something', {timeout: 20000}).should('be.visible').click() |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
cy.get('button', { timeout: 20000 }) .contains('something') .should('be.visible') .click()
^this is not working, still waits the default timeout for the overall config or test override, but individual timeouts don't work. What am I missing?
Beta Was this translation helpful? Give feedback.
All reactions