28 lines
946 B
JavaScript
28 lines
946 B
JavaScript
import selectors from '../../helpers/selectors';
|
|
import getBrowser from '../../helpers/puppeteer';
|
|
|
|
describe('Client Send balance compensation', () => {
|
|
let browser;
|
|
let page;
|
|
beforeAll(async() => {
|
|
browser = await getBrowser();
|
|
page = browser.page;
|
|
await page.loginAndModule('employee', 'client');
|
|
await page.accessToSearchResult('Clark Kent');
|
|
await page.accessToSection('client.card.balance.index');
|
|
});
|
|
|
|
afterAll(async() => {
|
|
await browser.close();
|
|
});
|
|
|
|
it(`should click on send compensation button`, async() => {
|
|
await page.autocompleteSearch(selectors.clientBalance.company, 'VNL');
|
|
await page.waitToClick(selectors.clientBalance.compensationButton);
|
|
await page.waitToClick(selectors.clientBalance.saveButton);
|
|
const message = await page.waitForSnackbar();
|
|
|
|
expect(message.text).toContain('Notification sent!');
|
|
});
|
|
});
|