#8448 - devToTest #1254

Merged
alexm merged 365 commits from 8448-devToTest into test 2025-01-21 10:44:46 +00:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit f04aeec21d - Show all commits

View File

@ -41,7 +41,7 @@ describe('OrderCatalog', () => {
} }
}); });
cy.get( cy.get(
'[data-cy="vnSearchBar"] > .q-field > .q-field__inner > .q-field__control' '[data-cy="vn-searchbar"] > .q-field > .q-field__inner > .q-field__control'
).type('{enter}'); ).type('{enter}');
cy.get(':nth-child(1) > [data-cy="catalogFilterCategory"]').click(); cy.get(':nth-child(1) > [data-cy="catalogFilterCategory"]').click();
cy.dataCy('catalogFilterValueDialogBtn').last().click(); cy.dataCy('catalogFilterValueDialogBtn').last().click();

View File

@ -9,9 +9,9 @@ describe('TicketList', () => {
}); });
const searchResults = (search) => { const searchResults = (search) => {
cy.dataCy('vnSearchBar').find('input').focus(); cy.dataCy('vn-searchbar').find('input').focus();
if (search) cy.dataCy('vnSearchBar').find('input').type(search); if (search) cy.dataCy('vn-searchbar').find('input').type(search);
cy.dataCy('vnSearchBar').find('input').type('{enter}'); cy.dataCy('vn-searchbar').find('input').type('{enter}');
cy.dataCy('ticketListTable').should('exist'); cy.dataCy('ticketListTable').should('exist');
cy.get(firstRow).should('exist'); cy.get(firstRow).should('exist');
}; };