从 webelement 中提取整数值并使用 cypress 再次比较
如果该整数值发生变化,如何从中提取 3 并与相同的值进行比较 3
How to extract 3 from this and compare it with same if this integer value changes
3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
提取元素文本并将其与预期值进行比较的简单方法是:
如果您想将其与整数值进行比较,则必须将提取的值转换为整数,然后将其与预期整数值进行比较。
Easy ways to extract element text and compare it with expected value are:
and if you want to compare it with integer value then you have to convert the extracted value to an integer and then compare it to an expected integer value.