8583-workerE2ETest #1570

Merged
carlossa merged 37 commits from 8583-workerE2ETest into dev 2025-03-10 11:32:58 +00:00
1 changed files with 6 additions and 1 deletions
Showing only changes of commit 6514490622 - Show all commits

View File

@ -1,4 +1,5 @@
describe('WorkerSummary', () => {
const departmentDescriptor = ':nth-child(1) > :nth-child(3) > .value > .link';
beforeEach(() => {
cy.viewport(1280, 720);
cy.login('developer');
@ -10,7 +11,11 @@ describe('WorkerSummary', () => {
cy.get('.summaryHeader > div').should('have.text', '19 - salesboss salesboss');
cy.get(':nth-child(1) > :nth-child(2) > .value > span').should(
'have.text',
'salesBossNick'
'salesBossNick',
);
});
it('should try all descriptors', () => {
cy.waitForElement('.summaryHeader');
});
});