2018-02-20 21:35:54 +00:00
|
|
|
import selectors from '../../helpers/selectors.js';
|
|
|
|
import createNightmare from '../../helpers/helpers';
|
|
|
|
|
|
|
|
describe('create item niche path', () => {
|
|
|
|
const nightmare = createNightmare();
|
|
|
|
|
2018-03-02 11:15:17 +00:00
|
|
|
beforeAll(() => {
|
|
|
|
return nightmare
|
|
|
|
.waitForLogin('developer');
|
|
|
|
});
|
|
|
|
|
2018-02-20 21:35:54 +00:00
|
|
|
it('should access to the items index by clicking the items button', () => {
|
|
|
|
return nightmare
|
|
|
|
.click(selectors.moduleAccessView.itemsSectionButton)
|
|
|
|
.wait(selectors.itemsIndex.createItemButton)
|
|
|
|
.parsedUrl()
|
|
|
|
.then(url => {
|
|
|
|
expect(url.hash).toEqual('#!/item/list');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should search for the item Gem of Time', () => {
|
|
|
|
return nightmare
|
|
|
|
.wait(selectors.itemsIndex.searchResult)
|
|
|
|
.type(selectors.itemsIndex.searchItemInput, 'Gem of Time')
|
|
|
|
.click(selectors.itemsIndex.searchButton)
|
|
|
|
.waitForNumberOfElements(selectors.itemsIndex.searchResult, 1)
|
|
|
|
.countSearchResults(selectors.itemsIndex.searchResult)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual(1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it(`should click on the search result to access to the item niches`, () => {
|
|
|
|
return nightmare
|
|
|
|
.waitForTextInElement(selectors.itemsIndex.searchResult, 'Gem of Time')
|
|
|
|
.waitToClick(selectors.itemsIndex.searchResult)
|
|
|
|
.waitToClick(selectors.itemNiches.nicheButton)
|
|
|
|
.waitForURL('niche')
|
|
|
|
.url()
|
|
|
|
.then(url => {
|
|
|
|
expect(url).toContain('niche');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it(`should click create a new niche, edit another and delete a former one`, () => {
|
|
|
|
return nightmare
|
|
|
|
.waitToClick(selectors.itemNiches.addNicheButton)
|
|
|
|
.waitToClick(selectors.itemNiches.firstWarehouseSelect)
|
|
|
|
.waitToClick(selectors.itemNiches.firstWarehouseSelectSecondOption)
|
|
|
|
.clearInput(selectors.itemNiches.firstCodeInput)
|
|
|
|
.type(selectors.itemNiches.firstCodeInput, 'New Location')
|
|
|
|
.waitToClick(selectors.itemNiches.secondNicheRemoveButton)
|
|
|
|
.waitToClick(selectors.itemNiches.thirdWarehouseSelect)
|
|
|
|
.waitToClick(selectors.itemNiches.thirdWarehouseSelectFourthOption)
|
|
|
|
.type(selectors.itemNiches.thirdCodeInput, 'a code')
|
|
|
|
.click(selectors.itemNiches.submitNichesButton)
|
|
|
|
.waitForSnackbar()
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toContain('Data saved!');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it(`should confirm the remaining niches are for the second third and fourth warehouses`, () => {
|
|
|
|
return nightmare
|
|
|
|
.click(selectors.itemBasicData.basicDataButton)
|
|
|
|
.wait(selectors.itemBasicData.nameInput)
|
|
|
|
.click(selectors.itemNiches.nicheButton)
|
|
|
|
.wait(200)
|
|
|
|
.getInputValue(selectors.itemNiches.thirdCodeInput)
|
|
|
|
.then(result => {
|
|
|
|
expect(result).toEqual('a code');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|