点击多个:真柏

发布于 2025-01-11 01:39:45 字数 207 浏览 0 评论 0原文

我登陆的页面上有大约 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

流星番茄 2025-01-18 01:39:45

这是我的之前的答案,因为您的要求不同。

您需要检查模式选择器是否存在差异。

cy.get("selector").each(($el) => {

  $el.click();  // actually no need to wrap as click works in jQuery
  
  cy.get(".modal-dialog").should('be.visible');
  cy.get(".modal-dialog button[type='submit']").click();

  cy.get(".modal-dialog").should('not.be.visible');  // wait for modal to go before next click
})

Here's my previous answer cut down as your requirements are different.

You'll need to check the modal selectors for differences.

cy.get("selector").each(($el) => {

  $el.click();  // actually no need to wrap as click works in jQuery
  
  cy.get(".modal-dialog").should('be.visible');
  cy.get(".modal-dialog button[type='submit']").click();

  cy.get(".modal-dialog").should('not.be.visible');  // wait for modal to go before next click
})
最笨的告白 2025-01-18 01:39:45

您可以使用 each() 来实现此目的:

cy.get('[src="someSource"]').each(($ele) => {
  cy.wrap($ele).click()
  //code to click the modal button
})

You can use each() for this:

cy.get('[src="someSource"]').each(($ele) => {
  cy.wrap($ele).click()
  //code to click the modal button
})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文