2019-08-12 14:58:39 +00:00
|
|
|
import selectors from '../../helpers/selectors.js';
|
2019-12-12 07:37:35 +00:00
|
|
|
import openPage from '../../helpers/puppeteer';
|
2019-08-12 14:58:39 +00:00
|
|
|
|
|
|
|
describe('Client DMS', () => {
|
|
|
|
const nightmare = createNightmare();
|
|
|
|
|
|
|
|
describe('as salesPerson', () => {
|
|
|
|
beforeAll(() => {
|
|
|
|
nightmare
|
|
|
|
.loginAndModule('salesPerson', 'client')
|
|
|
|
.accessToSearchResult('Tony Stark')
|
|
|
|
.accessToSection('client.card.dms.index');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should delete de first file', async() => {
|
|
|
|
let result = await nightmare
|
|
|
|
.waitToClick(selectors.dms.deleteFileButton)
|
|
|
|
.waitToClick(selectors.dms.acceptDeleteButton)
|
|
|
|
.waitForLastSnackbar();
|
|
|
|
|
|
|
|
expect(result).toEqual('Data saved!');
|
|
|
|
});
|
|
|
|
|
|
|
|
it(`should click on the first document line worker name making the descriptor visible`, async() => {
|
|
|
|
const visible = await nightmare
|
|
|
|
.waitToClick(selectors.dms.firstDocWorker)
|
2019-09-30 09:30:54 +00:00
|
|
|
.wait(selectors.dms.firstDocWorkerDescriptor)
|
2019-08-12 14:58:39 +00:00
|
|
|
.isVisible(selectors.dms.firstDocWorkerDescriptor);
|
|
|
|
|
|
|
|
expect(visible).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|