Replies: 1 comment 2 replies
-
I know it isn't the best approach, but have you tried to put an explicit wait between interactions to see if the application works fine? I had the same issue when dealing with radio buttons and after passing explicit waits, I got it working fine. Maybe it is a good thing to help you debugging |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've got an unknown number of buttons I want to click. I can target them with
get()
easily, yet at the first the page re-renders and Cypress can't find the subsequent elements. What's my solution (aside from changing how the page is implemented?)The script (in
support/index.js
)2nd attempt:
Beta Was this translation helpful? Give feedback.
All reactions