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
When you .type('{enter}') on a button, Cypress fires a click event on the element. However, inside a shadow root, it the event won't bubble through the shadow root because composed is not set to true.
Desired behavior
The click event fired should propagate through the shadow root and should be able to be listened to on a parent element.
Current behavior
When you
.type('{enter}')
on a button, Cypress fires aclick
event on the element. However, inside a shadow root, it the event won't bubble through the shadow root becausecomposed
is not set totrue
.Desired behavior
The
click
event fired should propagate through the shadow root and should be able to be listened to on a parent element.Test code to reproduce
https://github.com/kgroat/cypress-enter-repro
Cypress Version
12.9.0
Node version
16.16.0
Operating System
MacOS 13.2.1
Debug Logs
No response
Other
No response
The text was updated successfully, but these errors were encountered: