📜  cypress 检查 css 属性值 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:51.257000             🧑  作者: Mango

代码示例1
cy.get('[data-test-id="test-example"]')
  .invoke('attr', 'data-test-id')
  .should('equal', 'test-example')

// or you can get an element's CSS property
cy.get('[data-test-id="test-example"]')
  .invoke('css', 'position')
  .should('equal', 'static')