尝试将两个句子(深度相等)与其中一个在某些 css 格式的帮助下创建的句子进行比较失败。我要比较的字符串确实添加了几个空格分隔符
.space:after {
content: " ";
}
以下是声明:
stmt1 = 'this is the text'
stmt2 = 'this<span className="space"></span>is the<span className="space"></span>text'
在 UI 上两者看起来相同。但是当测试在 testcafe 中运行时stmt2
显示为 'thisis thestring'
有人可以帮我解决这个问题吗?