Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
565 views
in Technique[技术] by (71.8m points)

rotation - How to check orientation based on css `transform: rotate(270deg)` in Cypress?

I need to check the orientation of a div with Cypress.

This is the test:

cy
  .get('data-test="vertical"')
  .should('have.css', 'transform', 'translate(-100%, 0) rotate(270deg)')

The div behaviour is standard in a scenario, or it's rotated with css transform: translate(-100%, 0) rotate(270deg); in the other scenario. I need a way to check the orientation, but transform is difficult to check, because for example in Cypress test what happens is: when I expect transform: rotateX(180deg) I actually receive transform: matrix3d(1, 0, 0, 0, 0, -1, 1.22465e-16, 0, 0, -1.22465e-16, -1, 0, 0, 0, 0, 1).

I need to find a smart way to detect the orientation. Suggestions? Tips?

question from:https://stackoverflow.com/questions/65642522/how-to-check-orientation-based-on-css-transform-rotate270deg-in-cypress

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Issue is solved like this, with the creation of a command:

const getTransformRotationAngle = (cssTransformMatrix, absoluteValue) => {
  const cssTransformMatrixIndexes = cssTransformMatrix
    .split('(')[1]
    .split(')')[0]
    .split(',')
  const cssTransformScale = Math.sqrt(
    cssTransformMatrixIndexes[0] * cssTransformMatrixIndexes[0] +
      cssTransformMatrixIndexes[1] * cssTransformMatrixIndexes[1]
  )
  const cssTransformSin = cssTransformMatrixIndexes[1] / cssTransformScale
  const cssTransformAngle = Math.round(
    Math.asin(cssTransformSin) * (180 / Math.PI)
  )
  return absoluteValue ? Math.abs(cssTransformAngle) : cssTransformAngle
}

Cypress.Commands.add('getTransformRotationAngle', getTransformRotationAngle)

and its use in the test:

cy
  .get('data-test="vertical"')
  .invoke('css', 'transform')
  .then(cssTransform => {
    cy.getTransformRotationAngle(cssTransform, true).should(
      'eq',
      90 || 270
    )
  })

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...