62 lines
2.4 KiB
JavaScript
62 lines
2.4 KiB
JavaScript
import selectors from '../../helpers/selectors.js';
|
|
import getBrowser from '../../helpers/puppeteer';
|
|
|
|
describe('Route basic Data path', () => {
|
|
let browser;
|
|
let page;
|
|
|
|
beforeAll(async() => {
|
|
browser = await getBrowser();
|
|
page = browser.page;
|
|
await page.loginAndModule('delivery', 'route');
|
|
await page.accessToSearchResult('1');
|
|
await page.accessToSection('route.card.basicData');
|
|
});
|
|
|
|
afterAll(async() => {
|
|
await browser.close();
|
|
});
|
|
|
|
it('should edit the route basic data', async() => {
|
|
await page.autocompleteSearch(selectors.routeBasicData.workerAutoComplete, 'adminBossNick');
|
|
await page.autocompleteSearch(selectors.routeBasicData.vehicleAutoComplete, '1111-IMK');
|
|
await page.datePicker(selectors.routeBasicData.createdDateInput, 1, null);
|
|
await page.clearInput(selectors.routeBasicData.kmStartInput);
|
|
await page.write(selectors.routeBasicData.kmStartInput, '1');
|
|
await page.clearInput(selectors.routeBasicData.kmEndInput);
|
|
await page.write(selectors.routeBasicData.kmEndInput, '2');
|
|
await page.type(`${selectors.routeBasicData.startedHourInput} input`, '0800');
|
|
await page.type(`${selectors.routeBasicData.finishedHourInput} input`, '1230');
|
|
await page.waitToClick(selectors.routeBasicData.saveButton);
|
|
const result = await page.waitForLastSnackbar();
|
|
|
|
expect(result).toEqual('Data saved!');
|
|
}, 15000);
|
|
|
|
it('should confirm the worker was edited', async() => {
|
|
await page.reloadSection('route.card.basicData');
|
|
const worker = await page.waitToGetProperty(`${selectors.routeBasicData.workerAutoComplete} input`, 'value');
|
|
|
|
|
|
expect(worker).toEqual('adminBoss - adminBossNick');
|
|
});
|
|
|
|
it('should confirm the vehicle was edited', async() => {
|
|
const vehicle = await page.waitToGetProperty(`${selectors.routeBasicData.vehicleAutoComplete} input`, 'value');
|
|
|
|
expect(vehicle).toEqual('1111-IMK');
|
|
});
|
|
|
|
it('should confirm the km start was edited', async() => {
|
|
const kmStart = await page.waitToGetProperty(`${selectors.routeBasicData.kmStartInput} input`, 'value');
|
|
|
|
expect(kmStart).toEqual('1');
|
|
});
|
|
|
|
it('should confirm the km end was edited', async() => {
|
|
const kmEnd = await page.waitToGetProperty(`${selectors.routeBasicData.kmEndInput} input`, 'value');
|
|
|
|
expect(kmEnd).toEqual('2');
|
|
});
|
|
});
|