是否可以在 cypress js 中多次点击单个 api
例如,我有 api“localhost:4000/api/register”,我想在单个测试用例中点击此 api 10 次
For Example, I have api "localhost:4000/api/register" i want to hit this api 10 times in single test case
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用lodash方法
Cypress._.times()
示例:
Use lodash method
Cypress._.times()
Example:
你也可以喜欢这个,
这是我使用的示例之一,
You can like this also,
This is sample one which I used,