Skip to content
Snippets Groups Projects
Unverified Commit 45bbb472 authored by Nemanja Glumac's avatar Nemanja Glumac Committed by GitHub
Browse files

#14705 Repro: Cannot select all items in a collection using checkbox [ci skip] (#14778)

parent d6e17952
No related branches found
No related tags found
No related merge requests found
......@@ -217,6 +217,23 @@ describe("scenarios > collection_defaults", () => {
// 4. Consequently, "Everything else" should now also be visible
cy.findByText("Everything else");
});
it.skip("should let a user select all items using checkbox (metabase#14705)", () => {
cy.visit("/collection/root");
cy.findByText("Orders")
.closest("a")
.within(() => {
cy.get(".Icon-table").trigger("mouseover");
cy.findByRole("checkbox")
.should("be.visible")
.click();
});
cy.findByText("1 item selected").should("be.visible");
cy.get(".Icon-dash").click();
cy.get(".Icon-dash").should("not.exist");
cy.findByText("4 items selected");
});
});
// [quarantine]: cannot run tests that rely on email setup in CI (yet)
......
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