94 lines
3.5 KiB
JavaScript
94 lines
3.5 KiB
JavaScript
import selectors from '../../helpers/selectors.js';
|
|
import createNightmare from '../../helpers/nightmare';
|
|
|
|
describe('Item create niche path', () => {
|
|
const nightmare = createNightmare();
|
|
|
|
beforeAll(() => {
|
|
nightmare
|
|
.waitForLogin('buyer');
|
|
});
|
|
|
|
it('should access to the items index by clicking the items button', async () => {
|
|
const url = await nightmare
|
|
.click(selectors.moduleAccessView.itemsSectionButton)
|
|
.wait(selectors.itemsIndex.createItemButton)
|
|
.parsedUrl();
|
|
|
|
expect(url.hash).toEqual('#!/item/index');
|
|
});
|
|
|
|
it('should search for the item Gem of Time', async () => {
|
|
const resultCount = await nightmare
|
|
.wait(selectors.itemsIndex.searchItemInput)
|
|
.type(selectors.itemsIndex.searchItemInput, 'Gem of Time')
|
|
.click(selectors.itemsIndex.searchButton)
|
|
.waitForNumberOfElements(selectors.itemsIndex.searchResult, 1)
|
|
.countElement(selectors.itemsIndex.searchResult);
|
|
|
|
expect(resultCount).toEqual(1);
|
|
});
|
|
|
|
it(`should click on the search result to access to the item niches`, async () => {
|
|
const url = await nightmare
|
|
.waitForTextInElement(selectors.itemsIndex.searchResult, 'Gem of Time')
|
|
.waitToClick(selectors.itemsIndex.searchResult)
|
|
.waitToClick(selectors.itemNiches.nicheButton)
|
|
.waitForURL('niche')
|
|
.parsedUrl();
|
|
|
|
expect(url.hash).toContain('niche');
|
|
});
|
|
|
|
it(`should click create a new niche and delete a former one`, async () => {
|
|
const result = await nightmare
|
|
.waitToClick(selectors.itemNiches.addNicheButton)
|
|
.waitToClick(selectors.itemNiches.secondNicheRemoveButton)
|
|
.waitToClick(selectors.itemNiches.thirdWarehouseSelect)
|
|
.waitToClick(selectors.itemNiches.thirdWarehouseSelectFourthOption)
|
|
.type(selectors.itemNiches.thirdCodeInput, 'A4')
|
|
.click(selectors.itemNiches.submitNichesButton)
|
|
.waitForLastSnackbar();
|
|
|
|
expect(result).toEqual('Data saved!');
|
|
});
|
|
|
|
it(`should confirm the first niche is the expected one`, async () => {
|
|
let result = await nightmare
|
|
.click(selectors.itemBasicData.basicDataButton)
|
|
.wait(selectors.itemBasicData.nameInput)
|
|
.click(selectors.itemNiches.nicheButton)
|
|
.waitForTextInInput(selectors.itemNiches.firstWarehouseSelect, 'Warehouse One')
|
|
.waitToGetProperty(selectors.itemNiches.firstWarehouseSelect, 'value');
|
|
|
|
expect(result).toEqual('Warehouse One');
|
|
result = await nightmare
|
|
.waitToGetProperty(selectors.itemNiches.firstCodeInput, 'value');
|
|
|
|
expect(result).toEqual('A1');
|
|
});
|
|
|
|
it(`should confirm the second niche is the expected one`, async () => {
|
|
let result = await nightmare
|
|
.waitToGetProperty(selectors.itemNiches.secondWarehouseSelect, 'value');
|
|
|
|
expect(result).toEqual('Warehouse Three');
|
|
result = await nightmare
|
|
.waitToGetProperty(selectors.itemNiches.secondCodeInput, 'value');
|
|
|
|
|
|
expect(result).toEqual('A3');
|
|
});
|
|
|
|
it(`should confirm the third niche is the expected one`, async () => {
|
|
let result = await nightmare
|
|
.waitToGetProperty(selectors.itemNiches.thirdWarehouseSelect, 'value');
|
|
|
|
expect(result).toEqual('Warehouse Two');
|
|
result = await nightmare
|
|
.waitToGetProperty(selectors.itemNiches.thirdCodeInput, 'value');
|
|
|
|
expect(result).toEqual('A4');
|
|
});
|
|
});
|