typescript 如何测试HTML5内置的验证消息?[副本]

yqlxgs2m  于 2023-06-24  发布在  TypeScript
关注(0)|答案(1)|浏览(134)

此问题已在此处有答案

How to validate Browser Error's message with cypress(2个答案)
7天前关闭
我想知道如何编写测试HTML5内置的形式验证错误Cypress TypeScript。
这是我点击提交按钮时得到的消息:enter image description here
我试图添加下面的代码,但后来我得到了这样的错误。
enter image description here
电子邮件字段代码(检查):

<input type="text" name="Email" id="UserEmail" class="form-control" placeholder="E-mail" required autofocus style="margin-bottom:14px;">
wqsoz72f

wqsoz72f1#

这与另一个问题非常相似,我给出的答案是here。基本上,您希望测试通过调用输入的validationMessage属性来进行测试。

相关问题