salix-front/test/cypress/integration/worker/workerLocker.spec.js

20 lines
589 B
JavaScript
Raw Normal View History

2024-05-24 09:43:54 +00:00
describe('WorkerLocker', () => {
2024-05-13 14:22:12 +00:00
const workerId = 1109;
2024-05-28 10:12:31 +00:00
const lockerCode = '2F';
const input = '.q-card input';
2024-08-07 10:57:00 +00:00
const thirdOpt = '[role="listbox"] .q-item:nth-child(1)';
beforeEach(() => {
cy.viewport(1280, 720);
cy.login('productionBoss');
cy.visit(`/#/worker/${workerId}/locker`);
});
it('should allocates a locker', () => {
cy.get(input).click();
2024-07-29 08:10:34 +00:00
cy.waitForElement('[role="listbox"]');
cy.get(thirdOpt).click();
cy.saveCard();
cy.get(input).invoke('val').should('eq', lockerCode);
});
});