test: refs #8440 enhance visibility check and typing delay for adding new vehicle notes
This commit is contained in:
parent
ef0ac17d88
commit
ad96392cba
test/cypress/integration/route/vehicle
|
@ -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);
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue