博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Cypress] Use the Most Robust Selector for Cypress Tests
阅读量:5075 次
发布时间:2019-06-12

本文共 541 字,大约阅读时间需要 1 分钟。

Which selectors your choose for your tests matter, a lot. In this lesson, we'll see the recommended Cypress best practices for selectors, and why we should prefer the data-cy attribute.

 

If you know that for React, the best pratice for testing is also adding:

data-test-id={`todo-item-${todo.id}`}

 

For Cypress:

  •  

    spec:

    cy.get("[data-cy=todo-item-3]")      .should("have.text", "Hello world")      .should("not.have.class", "completed")      .find(".toggle")      .should("not.be.checked");

     

    转载于:https://www.cnblogs.com/Answer1215/p/11042815.html

    你可能感兴趣的文章
    Android Toast
    查看>>
    iOS开发UI篇—Quartz2D使用(绘制基本图形)
    查看>>
    docker固定IP地址重启不变
    查看>>
    桌面图标修复||桌面图标不正常
    查看>>
    JavaScript基础(四)关于对象及JSON
    查看>>
    JAVA面试常见问题之Redis篇
    查看>>
    jdk1.8 api 下载
    查看>>
    getElement的几中属性介绍
    查看>>
    HTML列表,表格与媒体元素
    查看>>
    雨林木风 GHOST_XP SP3 快速装机版YN12.08
    查看>>
    数据结构3——浅谈zkw线段树
    查看>>
    Introduction to my galaxy engine 2: Depth of field
    查看>>
    设计器 和后台代码的转换 快捷键
    查看>>
    STL容器之vector
    查看>>
    数据中心虚拟化技术
    查看>>
    复习文件操作
    查看>>
    SQL Server 使用作业设置定时任务之一(转载)
    查看>>
    第二阶段冲刺-01
    查看>>
    BZOJ1045 HAOI2008 糖果传递
    查看>>
    JavaScript 克隆数组
    查看>>