Newer
Older
describe("Upload and delete document from Organisation", () =>
{
it([Tag.DEFAULT], "Should upload a document to an organisation", () =>
{
cy.login();
cy.openMainFromFilter("Organisation", 2);
cy.openTabInMain("Dokumente");
cy.pressInsert();
cy.uploadDocument("adito.png", "image/png"); //the file needs to be stored in "fixtures"
cy.pressSave();
});
it([Tag.DEFAULT], "Should delete the uploaded document", () =>
{
cy.login();
cy.openMainFromFilter("Organisation", 2);
cy.openTabInMain("Dokumente");
cy.selectValue(0, "tile");
cy.pressButton(1);
cy.get(".neon-button").type("{enter}");
});
});