Skip to content
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

Visibility false to style='transform: scale(0,0)' or style='tra… #5590

Merged
merged 14 commits into from
Dec 5, 2019

Conversation

sainthkh
Copy link
Contributor

@sainthkh sainthkh commented Nov 4, 2019

User facing changelog

When an element is transformed by scale(0) or rotateY(90deg), it is not visible on the screen, but Cypress be.visible checks it's visible. Now, they're invisible.

Additional details

  • Why was this change necessary?

It can be confusing to users when something invisible is visible in Cypress tests.

NOTE: In #723, it was only about the change caused by scale. But rotateX(90deg), rotateY(90deg) can cause similar things. So, they're fixed in this PR, too.

  • What is affected by this change?

Not much. I could remove skip in one visibility test.

  • Any implementation details to explain?

I had to parse matrix3d to check scaleZ(0). I linked the resources to transformation matrix in comments.

How has the user experience changed?

Now, we can check visibility change by transform.

PR Tasks

@cypress-bot
Copy link
Contributor

cypress-bot bot commented Nov 4, 2019

Thanks for the contribution! Below are some guidelines Cypress uses when doing PR reviews.

  • Please write [WIP] in the title of your Pull Request if your PR is not ready for review - someone will review your PR as soon as the [WIP] is removed.
  • Please familiarize yourself with the PR Review Checklist and feel free to make updates on your PR based on these guidelines.

PR Review Checklist

If any of the following requirements can't be met, leave a comment in the review selecting 'Request changes', otherwise 'Approve'.

User Experience

  • The feature/bugfix is self-documenting from within the product.
  • The change provides the end user with a way to fix their problem (no dead ends).

Functionality

  • The code works and performs its intended function with the correct logic.
  • Performance has been factored in (for example, the code cleans up after itself to not cause memory leaks).
  • The code guards against edge cases and invalid input and has tests to cover it.

Maintainability

  • The code is readable (too many nested 'if's are a bad sign).
  • Names used for variables, methods, etc, clearly describe their function.
  • The code is easy to understood and there are relevant comments explaining.
  • New algorithms are documented in the code with link(s) to external docs (flowcharts, w3c, chrome, firefox).
  • There are comments containing link(s) to the addressed issue (in tests and code).

Quality

  • The change does not reimplement code.
  • There's not a module from the ecosystem that should be used instead.
  • There is no redundant or duplicate code.
  • There are no irrelevant comments left in the code.
  • Tests are testing the code’s intended functionality in the best way possible.

Internal

  • The original issue has been tagged with a release in ZenHub.

@jennifer-shehane jennifer-shehane requested a review from a team November 26, 2019 10:05
packages/driver/src/dom/visibility.js Outdated Show resolved Hide resolved
packages/driver/src/dom/visibility.js Outdated Show resolved Hide resolved
packages/driver/src/dom/visibility.js Outdated Show resolved Hide resolved
packages/driver/src/dom/visibility.js Show resolved Hide resolved
Co-Authored-By: Chris Breiding <chrisbreiding@users.noreply.github.com>
Update packages/driver/src/dom/visibility.js

Co-Authored-By: Chris Breiding <chrisbreiding@users.noreply.github.com>
Fixed typo.
@sainthkh
Copy link
Contributor Author

@chrisbreiding I found that I missed adding getReasonIsHidden message test in #5591. Can I add it here or should I open a new PR?

@chrisbreiding
Copy link
Contributor

@chrisbreiding I found that I missed adding getReasonIsHidden message test in #5591. Can I add it here or should I open a new PR?

Adding it here is fine.

@chrisbreiding chrisbreiding changed the title Visibility false to style='transform: scale(0,0)' or style='transfrom: rotateX(90deg)'. Visibility false to style='transform: scale(0,0)' or style='tra… Dec 5, 2019
@chrisbreiding chrisbreiding merged commit ab816d8 into cypress-io:develop Dec 5, 2019
avallete pushed a commit to avallete/cypress that referenced this pull request Dec 10, 2019
…ress-io#5590)

* Handle elements hidden by scale.

* Check rotateX(90deg), rotateY(90deg) + Use of getBoundingClientRect

* Added reason message.

* Fixed typo.

Co-Authored-By: Chris Breiding <chrisbreiding@users.noreply.github.com>
Update packages/driver/src/dom/visibility.js

Co-Authored-By: Chris Breiding <chrisbreiding@users.noreply.github.com>
Fixed typo.

* Use numberRegex created for backface-visibility.

* Added test for reason message.

* Added missing message test in cypress-io#5591
@jennifer-shehane
Copy link
Member

@sainthkh There's an edge case where this falsely evaluates an element as invisible when the parent has height: 0 that this does not cover. The example is given here: #5974 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

.should("be.visible") doesn't interpet elements with " style='transform: scale(0,0)' " correctly
4 participants