New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Element highlights not visible on certain position:absolute elements #7762
Labels
Comments
2 tasks
Reproducible example:
<!DOCTYPE html>
<html>
<body>
<div id="absolute-el" style="position: absolute;
z-index: 1000;
top: 0;
left: 0;
height: 50px;
width: 50px;
padding: 20px;
margin: 20px;
background-color: salmon;"></div>
</body>
</html>
it('highlight', () => {
cy.visit('index.html')
cy.get('div')
}) |
The code for this is done in cypress-io/cypress#7763, but has yet to be released. |
Released in This comment thread has been locked. If you are still experiencing this issue after upgrading to |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Element dom highlights can render underneath
position:absolute
andfixed
elements due to the outer highlight container not havingposition: absolute
and a highz-index
The text was updated successfully, but these errors were encountered: