salix/e2e/paths/item-module/06_create_item_botanical.sp...

90 lines
3.7 KiB
JavaScript
Raw Normal View History

2018-02-21 11:02:47 +00:00
import selectors from '../../helpers/selectors.js';
import createNightmare from '../../helpers/nightmare';
2018-02-21 11:02:47 +00:00
2018-11-20 13:22:00 +00:00
describe('Item Create botanical path', () => {
const nightmare = createNightmare();
2018-02-21 11:02:47 +00:00
2018-11-20 13:22:00 +00:00
beforeAll(() => {
nightmare
.loginAndModule('buyer', 'item')
2019-01-10 06:26:10 +00:00
.accessToSearchResult('Object5 Weapon 50')
.accessToSection('item.card.botanical');
2018-11-20 13:22:00 +00:00
});
2019-01-10 06:26:10 +00:00
it(`should create a new botanical for the item`, async() => {
2018-11-20 13:22:00 +00:00
const result = await nightmare
.wait(selectors.itemBotanical.botanicalInput)
.type(selectors.itemBotanical.botanicalInput, 'Cicuta maculata')
2019-01-07 08:33:07 +00:00
.autocompleteSearch(selectors.itemBotanical.genusAutocomplete, 'Abelia')
.autocompleteSearch(selectors.itemBotanical.speciesAutocomplete, 'dealbata')
.waitToClick(selectors.itemBotanical.submitBotanicalButton)
2018-11-20 13:22:00 +00:00
.waitForLastSnackbar();
expect(result).toEqual('Data saved!');
});
2019-01-10 06:26:10 +00:00
it(`should confirm the botanical for the item was created`, async() => {
2018-11-20 13:22:00 +00:00
const result = await nightmare
.click(selectors.itemBasicData.basicDataButton)
.wait(selectors.itemBasicData.nameInput)
.click(selectors.itemBotanical.botanicalButton)
.waitForTextInInput(selectors.itemBotanical.botanicalInput, 'Cicuta maculata')
.waitToGetProperty(selectors.itemBotanical.botanicalInput, 'value');
2018-11-20 13:22:00 +00:00
expect(result).toEqual('Cicuta maculata');
});
2019-01-10 06:26:10 +00:00
it(`should confirm the Genus for the item was created`, async() => {
2018-11-20 13:22:00 +00:00
const result = await nightmare
2019-01-07 08:33:07 +00:00
.waitForTextInInput(`${selectors.itemBotanical.genusAutocomplete} input`, 'Abelia')
.waitToGetProperty(`${selectors.itemBotanical.genusAutocomplete} input`, 'value');
2018-11-20 13:22:00 +00:00
expect(result).toEqual('Abelia');
});
2019-01-10 06:26:10 +00:00
it(`should confirm the Species for the item was created`, async() => {
2018-11-20 13:22:00 +00:00
const result = await nightmare
2019-01-07 08:33:07 +00:00
.waitToGetProperty(`${selectors.itemBotanical.speciesAutocomplete} input`, 'value');
2018-11-20 13:22:00 +00:00
expect(result).toEqual('dealbata');
});
2019-01-10 06:26:10 +00:00
it(`should edit botanical for the item`, async() => {
2018-11-20 13:22:00 +00:00
const result = await nightmare
.clearInput(selectors.itemBotanical.botanicalInput)
.type(selectors.itemBotanical.botanicalInput, 'Herp Derp')
2019-01-07 08:33:07 +00:00
.autocompleteSearch(selectors.itemBotanical.genusAutocomplete, 'Abies')
.autocompleteSearch(selectors.itemBotanical.speciesAutocomplete, 'decurrens')
.waitToClick(selectors.itemBotanical.submitBotanicalButton)
2018-11-20 13:22:00 +00:00
.waitForLastSnackbar();
expect(result).toEqual('Data saved!');
});
2019-01-10 06:26:10 +00:00
it(`should confirm the botanical for the item was edited`, async() => {
2018-11-20 13:22:00 +00:00
const result = await nightmare
.click(selectors.itemBasicData.basicDataButton)
.wait(selectors.itemBasicData.nameInput)
.click(selectors.itemBotanical.botanicalButton)
.waitForTextInInput(selectors.itemBotanical.botanicalInput, 'Herp Derp')
.waitToGetProperty(selectors.itemBotanical.botanicalInput, 'value');
2018-11-20 13:22:00 +00:00
expect(result).toEqual('Herp Derp');
});
2019-01-10 06:26:10 +00:00
it(`should confirm the Genus for the item was edited`, async() => {
2018-11-20 13:22:00 +00:00
const result = await nightmare
2019-01-07 08:33:07 +00:00
.waitForTextInInput(`${selectors.itemBotanical.genusAutocomplete} input`, 'Abies')
.waitToGetProperty(`${selectors.itemBotanical.genusAutocomplete} input`, 'value');
2018-11-20 13:22:00 +00:00
expect(result).toEqual('Abies');
});
2019-01-10 06:26:10 +00:00
it(`should confirm the Species for the item was edited`, async() => {
2018-11-20 13:22:00 +00:00
const result = await nightmare
2019-01-07 08:33:07 +00:00
.waitToGetProperty(`${selectors.itemBotanical.speciesAutocomplete} input`, 'value');
2018-11-20 13:22:00 +00:00
expect(result).toEqual('decurrens');
2018-02-21 11:47:48 +00:00
});
2018-02-21 11:02:47 +00:00
});