Skip to content
Snippets Groups Projects
Unverified Commit 15bc3349 authored by Uladzimir Havenchyk's avatar Uladzimir Havenchyk Committed by GitHub
Browse files

Fix flaky object-detail e2e test (#41096)

parent 697ac34d
No related branches found
No related tags found
No related merge requests found
......@@ -163,8 +163,14 @@ describe("scenarios > question > object details", { tags: "@slow" }, () => {
createQuestion(questionDetails, { visitQuestion: true });
cy.get(".cellData").contains("4966277046676").realHover();
cy.findByTestId("detail-shortcut").findByRole("button").click();
// there should be a hover instead of click
// but realHover is flaky
cy.get(".cellData").contains("4966277046676").click();
cy.findByTestId("detail-shortcut")
.findByRole("button")
.should("be.visible")
.click();
cy.findByRole("dialog").findByTestId("fk-relation-orders").click();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment