Skip to content
Snippets Groups Projects
indexSearch.ts 360 B
describe("Index Search", () =>
{
    it("Should find a specific company in the index search component", () =>
    {
        cy.login();
        cy.searchIndex("meineFirma");
    });
    
    it("Should search for a company in the indexsearch and open the 'show more' context", () =>
    {
        cy.login();
        cy.openIndexResult("Bucher");

    });
});