salix/e2e/paths/04-item/01_summary.spec.js

175 lines
7.4 KiB
JavaScript
Raw Normal View History

2018-02-22 15:44:14 +00:00
import selectors from '../../helpers/selectors.js';
import getBrowser from '../../helpers/puppeteer';
2018-02-22 15:44:14 +00:00
2018-11-02 12:36:20 +00:00
describe('Item summary path', () => {
let browser;
2020-01-09 12:07:16 +00:00
let page;
beforeAll(async() => {
browser = await getBrowser();
page = browser.page;
2020-01-09 12:07:16 +00:00
await page.loginAndModule('employee', 'item');
});
2018-10-28 11:37:37 +00:00
2020-01-09 12:07:16 +00:00
afterAll(async() => {
await browser.close();
2018-11-02 12:36:20 +00:00
});
2019-01-11 11:25:53 +00:00
it('should search for an item', async() => {
2020-02-03 14:55:11 +00:00
await page.clearInput(selectors.itemsIndex.topbarSearch);
await page.write(selectors.itemsIndex.topbarSearch, 'Ranged weapon longbow 2m');
2020-01-09 12:07:16 +00:00
await page.waitToClick(selectors.itemsIndex.searchButton);
await page.waitForNumberOfElements(selectors.itemsIndex.searchResult, 1);
const result = await page.countElement(selectors.itemsIndex.searchResult);
2018-11-02 12:36:20 +00:00
expect(result).toEqual(1);
});
2019-01-11 11:25:53 +00:00
it(`should click on the search result summary button to open the item summary popup`, async() => {
2020-01-09 12:07:16 +00:00
await page.waitForTextInElement(selectors.itemsIndex.searchResult, 'Ranged weapon longbow 2m');
await page.waitToClick(selectors.itemsIndex.searchResultPreviewButton);
const isVisible = await page.isVisible(selectors.itemSummary.basicData);
2018-11-20 13:22:00 +00:00
expect(isVisible).toBeTruthy();
2018-11-02 12:36:20 +00:00
});
2019-01-11 11:25:53 +00:00
it(`should check the item summary preview shows fields from basic data`, async() => {
2020-01-09 12:07:16 +00:00
await page.waitForTextInElement(selectors.itemSummary.basicData, 'Ranged weapon longbow 2m');
const result = await page.waitToGetProperty(selectors.itemSummary.basicData, 'innerText');
2018-11-02 12:36:20 +00:00
2019-03-27 07:44:15 +00:00
expect(result).toContain('Ranged weapon longbow 2m');
2018-11-02 12:36:20 +00:00
});
2019-01-11 11:25:53 +00:00
it(`should check the item summary preview shows fields from tags`, async() => {
2020-01-09 12:07:16 +00:00
await page.waitForTextInElement(selectors.itemSummary.tags, 'Brown');
const result = await page.waitToGetProperty(selectors.itemSummary.tags, 'innerText');
2018-11-02 12:36:20 +00:00
2019-03-27 07:44:15 +00:00
expect(result).toContain('Brown');
2018-11-02 12:36:20 +00:00
});
2019-01-11 11:25:53 +00:00
it(`should check the item summary preview shows fields from niche`, async() => {
2020-01-09 12:07:16 +00:00
await page.waitForTextInElement(selectors.itemSummary.niche, 'A1');
const result = await page.waitToGetProperty(selectors.itemSummary.niche, 'innerText');
2018-11-02 12:36:20 +00:00
2019-01-20 15:47:04 +00:00
expect(result).toContain('A1');
2018-11-02 12:36:20 +00:00
});
2019-01-11 11:25:53 +00:00
it(`should check the item summary preview shows fields from botanical`, async() => {
2020-01-09 12:07:16 +00:00
await page.waitForTextInElement(selectors.itemSummary.botanical, 'Hedera helix');
const result = await page.waitToGetProperty(selectors.itemSummary.botanical, 'innerText');
2018-11-02 12:36:20 +00:00
2019-01-20 15:47:04 +00:00
expect(result).toContain('Hedera helix');
2018-11-02 12:36:20 +00:00
});
2019-01-11 11:25:53 +00:00
it(`should check the item summary preview shows fields from barcode`, async() => {
2020-01-09 12:07:16 +00:00
await page.waitForTextInElement(selectors.itemSummary.barcode, '1');
const result = await page.waitToGetProperty(selectors.itemSummary.barcode, 'innerText');
2018-11-02 12:36:20 +00:00
expect(result).toContain('1');
});
2019-01-11 11:25:53 +00:00
it(`should close the summary popup`, async() => {
2020-02-12 13:36:05 +00:00
await page.closePopup();
await page.waitForSelector(selectors.itemSummary.basicData, {hidden: true});
2018-11-02 12:36:20 +00:00
});
2019-01-11 11:25:53 +00:00
it('should search for other item', async() => {
2020-01-09 12:07:16 +00:00
await page.clearInput('vn-searchbar');
await page.waitToClick(selectors.itemsIndex.searchButton);
2020-02-03 14:55:11 +00:00
await page.write(selectors.itemsIndex.topbarSearch, 'Melee weapon combat fist 15cm');
2020-01-09 12:07:16 +00:00
await page.waitToClick(selectors.itemsIndex.searchButton);
await page.waitForNumberOfElements(selectors.itemsIndex.searchResult, 1);
const result = await page.countElement(selectors.itemsIndex.searchResult);
2018-11-02 12:36:20 +00:00
expect(result).toEqual(1);
});
2019-01-11 11:25:53 +00:00
it(`should now click on the search result summary button to open the item summary popup`, async() => {
2020-01-09 12:07:16 +00:00
await page.waitToClick(selectors.itemsIndex.searchResultPreviewButton);
await page.waitForSelector(selectors.itemSummary.basicData, {visible: true});
2018-11-02 12:36:20 +00:00
});
2019-01-11 11:25:53 +00:00
it(`should now check the item summary preview shows fields from basic data`, async() => {
2020-01-09 12:07:16 +00:00
await page.waitForTextInElement(selectors.itemSummary.basicData, 'Melee weapon combat fist 15cm');
const result = await page.waitToGetProperty(selectors.itemSummary.basicData, 'innerText');
2018-11-02 12:36:20 +00:00
2019-04-17 07:37:55 +00:00
expect(result).toContain('Melee weapon combat fist 15cm');
2018-11-02 12:36:20 +00:00
});
2019-01-11 11:25:53 +00:00
it(`should now check the item summary preview shows fields from tags`, async() => {
2020-01-09 12:07:16 +00:00
await page.waitForTextInElement(selectors.itemSummary.tags, 'Silver');
const result = await page.waitToGetProperty(selectors.itemSummary.tags, 'innerText');
2018-11-02 12:36:20 +00:00
2019-03-27 07:44:15 +00:00
expect(result).toContain('Silver');
2018-11-02 12:36:20 +00:00
});
2019-01-11 11:25:53 +00:00
it(`should now check the item summary preview shows fields from niche`, async() => {
2020-01-09 12:07:16 +00:00
await page.waitForTextInElement(selectors.itemSummary.niche, 'A4');
const result = await page.waitToGetProperty(selectors.itemSummary.niche, 'innerText');
2018-11-02 12:36:20 +00:00
2019-01-20 15:47:04 +00:00
expect(result).toContain('A4');
2018-11-02 12:36:20 +00:00
});
2019-01-11 11:25:53 +00:00
it(`should now check the item summary preview shows fields from botanical`, async() => {
2020-01-09 12:07:16 +00:00
await page.waitForTextInElement(selectors.itemSummary.botanical, '-');
const result = await page.waitToGetProperty(selectors.itemSummary.botanical, 'innerText');
2018-11-02 12:36:20 +00:00
2019-01-20 15:47:04 +00:00
expect(result).toContain('-');
2018-11-02 12:36:20 +00:00
});
2019-01-11 11:25:53 +00:00
it(`should now check the item summary preview shows fields from barcode`, async() => {
2020-01-09 12:07:16 +00:00
await page.waitForTextInElement(selectors.itemSummary.barcode, '4');
const result = await page.waitToGetProperty(selectors.itemSummary.barcode, 'innerText');
2018-11-02 12:36:20 +00:00
expect(result).toContain('4');
});
2019-01-11 11:25:53 +00:00
it(`should now close the summary popup`, async() => {
2020-02-12 13:36:05 +00:00
await page.closePopup();
2020-01-09 12:07:16 +00:00
await page.waitForSelector(selectors.itemSummary.basicData, {hidden: true});
2018-11-02 12:36:20 +00:00
});
2019-01-11 11:25:53 +00:00
it(`should navigate to the one of the items detailed section`, async() => {
2020-01-09 12:07:16 +00:00
await page.waitToClick(selectors.itemsIndex.searchResult);
2020-02-04 15:21:10 +00:00
let url = await page.expectURL('summary');
2018-11-02 12:36:20 +00:00
2020-02-04 15:21:10 +00:00
expect(url).toBe(true);
2018-11-02 12:36:20 +00:00
});
2019-02-04 13:47:55 +00:00
it(`should check the descritor edit button is not visible for employee`, async() => {
2020-01-09 12:07:16 +00:00
const visibleButton = await page.isVisible(selectors.itemDescriptor.editButton);
2019-02-04 13:47:55 +00:00
expect(visibleButton).toBeFalsy();
});
2019-01-11 11:25:53 +00:00
it(`should check the item summary shows fields from basic data section`, async() => {
2020-01-09 12:07:16 +00:00
await page.waitForTextInElement(selectors.itemSummary.basicData, 'Melee weapon combat fist 15cm');
const result = await page.waitToGetProperty(selectors.itemSummary.basicData, 'innerText');
2018-11-02 12:36:20 +00:00
2019-04-17 07:37:55 +00:00
expect(result).toContain('Melee weapon combat fist 15cm');
2018-11-02 12:36:20 +00:00
});
2019-01-11 11:25:53 +00:00
it(`should check the item summary shows fields from tags section`, async() => {
2020-01-09 12:07:16 +00:00
const result = await page.waitToGetProperty(selectors.itemSummary.tags, 'innerText');
2018-11-02 12:36:20 +00:00
2019-03-27 07:44:15 +00:00
expect(result).toContain('Silver');
2018-11-02 12:36:20 +00:00
});
2019-01-11 11:25:53 +00:00
it(`should check the item summary shows fields from niches section`, async() => {
2020-01-09 12:07:16 +00:00
const result = await page.waitToGetProperty(selectors.itemSummary.niche, 'innerText');
2018-11-02 12:36:20 +00:00
2019-01-20 15:47:04 +00:00
expect(result).toContain('One A4');
2018-11-02 12:36:20 +00:00
});
2019-01-11 11:25:53 +00:00
it(`should check the item summary shows fields from botanical section`, async() => {
2020-01-09 12:07:16 +00:00
const result = await page.waitToGetProperty(selectors.itemSummary.botanical, 'innerText');
2018-11-02 12:36:20 +00:00
2019-01-20 15:47:04 +00:00
expect(result).toContain('-');
2018-11-02 12:36:20 +00:00
});
2018-10-28 11:37:37 +00:00
2019-01-11 11:25:53 +00:00
it(`should check the item summary shows fields from barcodes section`, async() => {
2020-01-09 12:07:16 +00:00
const result = await page.waitToGetProperty(selectors.itemSummary.barcode, 'innerText');
2018-10-28 11:37:37 +00:00
2018-11-02 12:36:20 +00:00
expect(result).toContain('4');
2018-02-22 15:44:14 +00:00
});
});