You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As we had quite a lot of those, this slowed down our tests. Also I don't think these should be required here. (I only just now noticed something curious, even a cy.wait(0) will work, at least in the testcase linked below)
This works in Firefox, and in Chrome version 80 (which I luckily still had on an old machine). As Google makes it almost impossible to download an older Chrome version, I couldn't really try different versions.
Cypress version otoh doesn't really seem to matter, it happens in old versions as well as in current version.
This is a duplicate of #7306, but the best example of this issue that we've been given. I'll post this example in the other thread. Thanks for sending the reproducible!
I have a very simple page with a select box and a text field. The select box submits the page on every change.
I have this very simple test spec:
This used to work perfectly fine with Chrome 80. Since Chrome 83, the second
cy.get()
throws an error:As a workaround, we had to put an explicit
cy.wait(100)
between the two commands.As we had quite a lot of those, this slowed down our tests. Also I don't think these should be required here. (I only just now noticed something curious, even a
cy.wait(0)
will work, at least in the testcase linked below)This works in Firefox, and in Chrome version 80 (which I luckily still had on an old machine). As Google makes it almost impossible to download an older Chrome version, I couldn't really try different versions.
Cypress version otoh doesn't really seem to matter, it happens in old versions as well as in current version.
Here is a small repo which reproduces the problem. Simply run
npm start
.The text was updated successfully, but these errors were encountered: