Skip to content
Snippets Groups Projects
Unverified Commit e6649aff authored by Diogo Mendes's avatar Diogo Mendes Committed by GitHub
Browse files

Creating regressions for 16621 (#20445)

parent 55a5fde2
Branches
Tags
No related merge requests found
import { restore, openProductsTable } from "__support__/e2e/cypress";
describe("issue 16661", () => {
beforeEach(() => {
restore();
cy.signInAsAdmin();
openProductsTable({ limit: 3 });
});
it("should be possible to create multiple filter that start with the same value (metabase#16621)", () => {
cy.findByText("Category").click();
cy.findByText("Filter by this column").click();
cy.findByPlaceholderText("Search the list").type("Doo{enter}");
cy.findByTestId("Doo-filter-value").click();
cy.button("Update filter").click();
cy.findByText("Category is Doo").click();
cy.findByTestId("Doohickey-filter-value").click();
cy.button("Update filter").click();
cy.findByText("Category is 2 selections");
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment