parent
23e898c036
commit
8a9bcc3822
|
@ -293,7 +293,7 @@ export default {
|
|||
warehouseAutocomplete: 'vn-item-diary vn-autocomplete[field="$ctrl.warehouseFk"]',
|
||||
},
|
||||
itemLog: {
|
||||
fourthLineCreatedProperty: 'vn-item-log > vn-log vn-tbody > vn-tr:nth-child(4) > vn-td > vn-one:nth-child(3) > div span:nth-child(3)',
|
||||
anyLineCreated: 'vn-item-log > vn-log vn-tbody > vn-tr',
|
||||
fifthLineCreatedProperty: 'vn-item-log > vn-log vn-tbody > vn-tr:nth-child(5) > vn-td > vn-one:nth-child(3) > div span:nth-child(3)',
|
||||
},
|
||||
ticketSummary: {
|
||||
|
|
|
@ -59,11 +59,12 @@ describe('Item log path', () => {
|
|||
expect(url.hash).toContain('/log');
|
||||
});
|
||||
|
||||
it(`should confirm the log is showing the created item temporary name`, async() => {
|
||||
const fourthLineCreatedProperty = await nightmare
|
||||
.waitToGetProperty(selectors.itemLog.fourthLineCreatedProperty, 'innerText');
|
||||
it(`should confirm the log is showing 5 entries`, async() => {
|
||||
const anyLineCreatedCount = await nightmare
|
||||
.wait(selectors.itemLog.anyLineCreated)
|
||||
.countElement(selectors.itemLog.anyLineCreated);
|
||||
|
||||
expect(fourthLineCreatedProperty).toEqual('Knowledge artifact');
|
||||
expect(anyLineCreatedCount).toEqual(5);
|
||||
});
|
||||
|
||||
it(`should confirm the log is showing the intrastat for the created item`, async() => {
|
||||
|
|
Loading…
Reference in New Issue