Merge branch 'dev' of https://git.verdnatura.es/salix into dev
This commit is contained in:
commit
31e2000c32
|
@ -0,0 +1,129 @@
|
|||
import selectors from '../../helpers/selectors.js';
|
||||
import createNightmare from '../../helpers/helpers';
|
||||
|
||||
describe('create item botanical path', () => {
|
||||
const nightmare = createNightmare();
|
||||
|
||||
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, 'Mjolnir')
|
||||
.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 botanical`, () => {
|
||||
return nightmare
|
||||
.waitForTextInElement(selectors.itemsIndex.searchResult, 'Mjolnir')
|
||||
.waitToClick(selectors.itemsIndex.searchResult)
|
||||
.waitToClick(selectors.itemBotanical.botanicalButton)
|
||||
.waitForURL('botanical')
|
||||
.url()
|
||||
.then(url => {
|
||||
expect(url).toContain('botanical');
|
||||
});
|
||||
});
|
||||
|
||||
it(`should create a new botanical for the item with id Mjolnir`, () => {
|
||||
return nightmare
|
||||
.type(selectors.itemBotanical.botanicalInput, 'Cicuta maculata')
|
||||
.waitToClick(selectors.itemBotanical.genusSelect)
|
||||
.waitToClick(selectors.itemBotanical.genusSelectOptionOne)
|
||||
.waitToClick(selectors.itemBotanical.speciesSelect)
|
||||
.waitToClick(selectors.itemBotanical.speciesSelectOptionOne)
|
||||
.waitToClick(selectors.itemBotanical.submitBotanicalButton)
|
||||
.waitForSnackbar()
|
||||
.then(result => {
|
||||
expect(result).toContain('Data saved!');
|
||||
});
|
||||
});
|
||||
|
||||
it(`should confirm the botanical for item 5 was created`, () => {
|
||||
return nightmare
|
||||
.click(selectors.itemBasicData.basicDataButton)
|
||||
.wait(selectors.itemBasicData.nameInput)
|
||||
.click(selectors.itemBotanical.botanicalButton)
|
||||
.wait(200)
|
||||
.getInputValue(selectors.itemBotanical.botanicalInput)
|
||||
.then(result => {
|
||||
expect(result).toEqual('Cicuta maculata');
|
||||
});
|
||||
});
|
||||
|
||||
it(`should confirm the Genus for item 5 was created`, () => {
|
||||
return nightmare
|
||||
.wait(200)
|
||||
.getInputValue(selectors.itemBotanical.genusSelect)
|
||||
.then(result => {
|
||||
expect(result).toEqual('Abelia');
|
||||
});
|
||||
});
|
||||
|
||||
it(`should confirm the Species for item 5 was created`, () => {
|
||||
return nightmare
|
||||
.wait(200)
|
||||
.getInputValue(selectors.itemBotanical.speciesSelect)
|
||||
.then(result => {
|
||||
expect(result).toEqual('dealbata');
|
||||
});
|
||||
});
|
||||
|
||||
it(`should edit botanical for the item with id Mjolnir`, () => {
|
||||
return nightmare
|
||||
.clearInput(selectors.itemBotanical.botanicalInput)
|
||||
.type(selectors.itemBotanical.botanicalInput, 'Herp Derp')
|
||||
.waitToClick(selectors.itemBotanical.genusSelect)
|
||||
.waitToClick(selectors.itemBotanical.genusSelectOptionTwo)
|
||||
.waitToClick(selectors.itemBotanical.speciesSelect)
|
||||
.waitToClick(selectors.itemBotanical.speciesSelectOptionTwo)
|
||||
.waitToClick(selectors.itemBotanical.submitBotanicalButton)
|
||||
.waitForSnackbar()
|
||||
.then(result => {
|
||||
expect(result).toContain('Data saved!');
|
||||
});
|
||||
});
|
||||
|
||||
it(`should confirm the botanical for item 5 was edited`, () => {
|
||||
return nightmare
|
||||
.click(selectors.itemBasicData.basicDataButton)
|
||||
.wait(selectors.itemBasicData.nameInput)
|
||||
.click(selectors.itemBotanical.botanicalButton)
|
||||
.wait(200)
|
||||
.getInputValue(selectors.itemBotanical.botanicalInput)
|
||||
.then(result => {
|
||||
expect(result).toEqual('Herp Derp');
|
||||
});
|
||||
});
|
||||
|
||||
it(`should confirm the Genus for item 5 was edited`, () => {
|
||||
return nightmare
|
||||
.wait(200)
|
||||
.getInputValue(selectors.itemBotanical.genusSelect)
|
||||
.then(result => {
|
||||
expect(result).toEqual('Abies');
|
||||
});
|
||||
});
|
||||
|
||||
it(`should confirm the Species for item 5 was edited`, () => {
|
||||
return nightmare
|
||||
.wait(200)
|
||||
.getInputValue(selectors.itemBotanical.speciesSelect)
|
||||
.then(result => {
|
||||
expect(result).toEqual('decurrens');
|
||||
});
|
||||
});
|
||||
});
|
|
@ -56,7 +56,7 @@ describe('create item barcodes path', () => {
|
|||
.click(selectors.itemBasicData.basicDataButton)
|
||||
.wait(selectors.itemBasicData.nameInput)
|
||||
.click(selectors.itemBarcodes.barcodeButton)
|
||||
.wait(1000)
|
||||
.wait(200)
|
||||
.getInputValue(selectors.itemBarcodes.thirdCodeInput)
|
||||
.then(result => {
|
||||
expect(result).toEqual('5');
|
||||
|
|
Loading…
Reference in New Issue