salix/e2e/paths/06-claim/03_claim_action.spec.js

55 lines
1.8 KiB
JavaScript
Raw Normal View History

2019-02-25 10:47:28 +00:00
import selectors from '../../helpers/selectors.js';
import getBrowser from '../../helpers/puppeteer.js';
2019-02-25 10:47:28 +00:00
2020-05-14 15:15:54 +00:00
describe('Claim action path', () => {
let browser;
let page;
beforeAll(async() => {
browser = await getBrowser();
page = browser.page;
await page.loginAndModule('claimManager', 'claim');
await page.accessToSearchResult('2');
await page.accessToSection('claim.card.action');
});
2019-02-25 10:47:28 +00:00
afterAll(async() => {
await browser.close();
2019-02-25 10:47:28 +00:00
});
it('should import the claim', async() => {
await page.waitToClick(selectors.claimAction.importClaimButton);
2020-04-08 09:24:40 +00:00
const message = await page.waitForSnackbar();
2019-02-25 10:47:28 +00:00
2020-11-10 11:06:21 +00:00
expect(message.text).toContain('Data saved!');
2019-02-25 10:47:28 +00:00
});
2019-06-14 10:27:41 +00:00
it('should delete the first line', async() => {
await page.waitToClick(selectors.claimAction.firstDeleteLine);
2020-04-08 09:24:40 +00:00
const message = await page.waitForSnackbar();
2019-02-25 10:47:28 +00:00
2020-11-10 11:06:21 +00:00
expect(message.text).toContain('Data saved!');
2019-02-25 10:47:28 +00:00
});
it('should refresh the view to check not have lines', async() => {
await page.reloadSection('claim.card.action');
const result = await page.countElement(selectors.claimAction.anyLine);
2019-02-25 10:47:28 +00:00
expect(result).toEqual(0);
2019-02-25 10:47:28 +00:00
});
2019-06-14 10:27:41 +00:00
it('should check the "is paid with mana" checkbox', async() => {
await page.waitToClick(selectors.claimAction.isPaidWithManaCheckbox);
2020-04-08 09:24:40 +00:00
const message = await page.waitForSnackbar();
2020-11-10 11:06:21 +00:00
expect(message.text).toContain('Data saved!');
});
2020-06-03 12:46:58 +00:00
it('should confirm the "is paid with mana" is checked', async() => {
await page.reloadSection('claim.card.action');
const isPaidWithManaCheckbox = await page.checkboxState(selectors.claimAction.isPaidWithManaCheckbox);
expect(isPaidWithManaCheckbox).toBe('checked');
2020-05-14 12:30:43 +00:00
});
2019-02-25 10:47:28 +00:00
});