2022-11-28 08:04:41 +00:00
|
|
|
describe('WorkerList', () => {
|
|
|
|
beforeEach(() => {
|
2022-12-20 10:53:49 +00:00
|
|
|
cy.viewport(1280, 720);
|
|
|
|
cy.login('developer');
|
2022-11-28 08:04:41 +00:00
|
|
|
cy.visit('/#/worker/list');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should open the worker summary', () => {
|
2024-07-12 07:16:32 +00:00
|
|
|
cy.get('.bg-header > :nth-child(2) > .full-width > :nth-child(1) >').type(
|
|
|
|
'jessica jones{enter}'
|
|
|
|
);
|
2022-11-28 08:04:41 +00:00
|
|
|
});
|
2022-12-20 10:53:49 +00:00
|
|
|
});
|