import selectors from '../../helpers/selectors.js'; import getBrowser from '../../helpers/puppeteer'; describe('Ticket log path', () => { let browser; let page; const ticketId = '5'; beforeAll(async() => { browser = await getBrowser(); page = browser.page; }); afterAll(async() => { await browser.close(); }); it('should navigate to the target ticket notes section', async() => { await page.loginAndModule('employee', 'ticket'); await page.accessToSearchResult(ticketId); await page.accessToSection('ticket.card.observation'); await page.waitForState('ticket.card.observation'); }); it('should create a new note for the test', async() => { await page.waitToClick(selectors.ticketNotes.addNoteButton); await page.autocompleteSearch(selectors.ticketNotes.firstNoteType, 'observation one'); await page.write(selectors.ticketNotes.firstDescription, 'description'); await page.waitToClick(selectors.ticketNotes.submitNotesButton); const result = await page.waitForLastSnackbar(); expect(result).toEqual('Data saved!'); }); it('should navigate to the log section', async() => { await page.accessToSection('ticket.card.log'); }); it('should set the viewport width to 1920 to see the table full width', async() => { await page.setViewport({ width: 1920, height: 0, }); const result = await page.waitToGetProperty(selectors.ticketLog.firstTD, 'innerText'); expect(result.length).not.toBeGreaterThan('20'); }); it('should set the viewport width to 800 to see the table shrink and move data to the 1st column', async() => { await page.setViewport({ width: 800, height: 0, }); const result = await page.waitToGetProperty(selectors.ticketLog.firstTD, 'innerText'); expect(result.length).toBeGreaterThan('20'); }); });