8440-createVehicleNotes #1638

Merged
jtubau merged 32 commits from 8440-createVehicleNotes into dev 2025-03-31 09:01:36 +00:00
1 changed files with 4 additions and 1 deletions
Showing only changes of commit ad96392cba - Show all commits

View File

@ -16,7 +16,10 @@ describe('Vehicle Notes', () => {
});
it('Should add new note', () => {
cy.dataCy(selectors.addNoteInput).click().type(newNoteText);
cy.dataCy(selectors.addNoteInput)
.should('be.visible')
.click()
.type(newNoteText, { delay: 100 });
cy.dataCy(selectors.saveNoteBtn).click();
cy.validateContent(selectors.noteCard, newNoteText);
});