Closed sebastianzillessen closed 1 year ago
In our application we use the hotkeys-cheatsheet component to display the cheatsheet.
The current combination of
visibility: hidden; display: none; display: table !important;
Keeps the element always in the DOM and causes Cypress sometimes to 'click' on not visible, but existing elements from the Hotkeys Overlay.
Could we reformat this and only use display: none and display: table for the classes fade and fade in?
display: none
display: table
fade
fade in
fade and fade in won't work if we apply it will be based on display rule. please update your e2e tests logic/selectors. Thanks!
In our application we use the hotkeys-cheatsheet component to display the cheatsheet.
The current combination of
visibility: hidden; display: none; display: table !important;
Keeps the element always in the DOM and causes Cypress sometimes to 'click' on not visible, but existing elements from the Hotkeys Overlay.
Could we reformat this and only use
display: none
anddisplay: table
for the classesfade
andfade in
?