点击多个:真柏
我登陆的页面上有大约 15 个图标,全部具有相同的来源。我抓取每个元素的方式如下所示:
cy.get('[src="someSource"]').click({ multiple: true })
问题是,单击一个图标后,我会弹出一个模型,我需要单击另一个按钮才能继续下一个图标。
我有办法在每个图标之间添加另一个点击吗?
I have a page where I land that have about 15 icons on it all with the same source. The way im grabbing each element looks like this:
cy.get('[src="someSource"]').click({ multiple: true })
The issue that have is that after clicking on an icon I have a model that pops up where I need to click another button before I can continue to the next icon.
I there a way for me to add another click in between each of these icons ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我的之前的答案,因为您的要求不同。
您需要检查模式选择器是否存在差异。
Here's my previous answer cut down as your requirements are different.
You'll need to check the modal selectors for differences.
您可以使用
each()
来实现此目的:You can use
each()
for this: