import selectors from '../../helpers/selectors.js'; import getBrowser from '../../helpers/puppeteer'; describe('Claim action path', () => { let browser; let page; beforeAll(async() => { browser = await getBrowser(); page = browser.page; await page.loginAndModule('administrative', 'claim'); await page.accessToSearchResult('2'); await page.accessToSection('claim.card.action'); }); afterAll(async() => { await browser.close(); }); it('should import the claim', async() => { await page.waitToClick(selectors.claimAction.importClaimButton); const result = await page.waitForLastSnackbar(); expect(result).toEqual('Data saved!'); }); it('should import the second importable ticket', async() => { await page.waitToClick(selectors.claimAction.importTicketButton); await page.waitToClick(selectors.claimAction.secondImportableTicket); const result = await page.waitForLastSnackbar(); expect(result).toEqual('Data saved!'); }); it('should edit the second line destination field', async() => { await page.autocompleteSearch(selectors.claimAction.secondLineDestination, 'Bueno'); const result = await page.waitForLastSnackbar(); expect(result).toEqual('Data saved!'); }); it('should delete the first line', async() => { await page.waitToClick(selectors.claimAction.firstDeleteLine); await page.waitForLastSnackbar(); expect(result).toEqual('Data saved!'); }); it('should refresh the view to check the remaining line is the expected one', async() => { await page.reloadSection('claim.card.action'); const result = await page.waitToGetProperty(`${selectors.claimAction.firstLineDestination} input`, 'value'); expect(result).toEqual('Bueno'); }); it('should delete the current first line', async() => { await page.waitToClick(selectors.claimAction.firstDeleteLine); const result = await page.waitForLastSnackbar(); expect(result).toEqual('Data saved!'); }); it('should check the "is paid with mana" checkbox', async() => { await page.waitToClick(selectors.claimAction.isPaidWithManaCheckbox); const result = await page.waitForLastSnackbar(); expect(result).toEqual(jasmine.arrayContaining(['Data saved!'])); }); it('should confirm the "is paid with mana" checkbox is checked', async() => { await page.reloadSection('claim.card.action'); const result = await page.checkboxState(selectors.claimAction.isPaidWithManaCheckbox); expect(result).toBe('checked'); }); });