如何在Cypress.io中拖放

问题描述 投票:0回答:5

我正在测试 Trello 并尝试拖动最后一个列表,然后将其放入倒数第二列,但如果没有“.wait”,测试将无法工作。如果有人可以就这里的潜在问题提出建议,那将非常有帮助,因为我更喜欢避免使用“.wait”。没有抛出错误,但是如果没有“.wait”,拖放就不会发生。

describe("Moving list", () => {
  it("Waiting For Accept list should be moved from last column to the penultimate column", () => {
    cy.get("#board")
      .children(".js-list")
      .should("have.length", 4)
      .and("be.visible");

    cy.get(":nth-child(4) > .list")
      .should("be.visible")
      .and("contain", "Waiting For Accept")

    cy.get(":nth-child(4) > .list").trigger("mousedown", {
      which: 1
    });

    cy.get("#board > div:nth-child(2) > .list")
      .trigger("mousemove");

    cy.get("#board > div:nth-child(3) > .list")
      .trigger("mousemove")
      .trigger("mouseup");

    cy.get(":nth-child(3) > .list")
      .should("contain", "Waiting For Accept");
  });
});

看图

看图

javascript testing drag-and-drop e2e-testing cypress
5个回答
2
投票

这不是开箱即用的,记录的问题是 https://github.com/cypress-io/cypress/issues/845 。但在同一张票证中,还可以使用本机拖放 API 以及可拖动元素上的可拖动属性来解决此问题:

创建自定义命令

Cypress.Commands.add("dragTo", { prevSubject: "element" }, (subject, targetEl) => {
    cy.wrap(subject).trigger("dragstart");
    cy.get(targetEl).trigger("drop");
  }
);

在测试脚本中您可以使用:

cy.get(".source").dragTo(".target");

1
投票

您可以使用 Cypress 拖放插件

https://github.com/4teamwork/cypress-drag-drop


0
投票

最后我使用“cy.request”解决了这个问题

https://docs.cypress.io/api/commands/request.html#Syntax

describe("Moving list", () => {
        it("Waiting For Accept list should be moved from last column to the penultimate column", () => {
            cy.request("https://trello.com/b/9lfzKIRu/trello-tests").then(response => {
                expect(response.status).to.eq(200);
            });
            cy.get("#board > div:nth-child(4) > .list").trigger("mousedown", {
                which: 1
            });
            cy.get("#board > div:nth-child(2) > .list").trigger("mousemove");
            cy.get("#board > div:nth-child(3) > .list")
                .trigger("mousemove")
                .trigger("mouseup");
            cy.get(":nth-child(3) > .list").should("contain", "Waiting For Accept");
        });
    });

0
投票

我通过将拖放版本从 2.1.0 降级到 1.8.0 解决了这个问题

https://www.npmjs.com/package/@4tw/cypress-drag-drop


0
投票

最好的解决方案是使用https://github.com/4teamwork/cypress-drag-drop它也支持拖动到顶部和底部。

 cy.get('#placeholder-3').drag('#placeholder-2', {position: 'top'});
© www.soinside.com 2019 - 2024. All rights reserved.