gpt4 book ai didi

cypress - 使用 Cypress 断言组件包含字符串 "case insensitive"的最佳方法是什么?

转载 作者:行者123 更新时间:2023-12-05 09:27:22 25 4
gpt4 key购买 nike

我想断言一个组件包含一个字符串而不关心字符串的大小写。

比如我要

cy.get('#label').should('contain.text', 'integrator');

即使标签包含“Integrator”也能通过。

我做出此断言的最佳方式是什么?

最佳答案

您还可以将 cy.contains() 与正则表达式一起使用

cy.contains('#label', /integrator/i)  // should is implied in this command

或作为一个选项

cy.contains('#label', 'integrator', {matchCase:false})

关于cypress - 使用 Cypress 断言组件包含字符串 "case insensitive"的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72530284/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com