created order.index showEmpty filter path
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
parent
af0d0f1fbe
commit
321aa827c2
|
@ -618,9 +618,13 @@ export default {
|
||||||
},
|
},
|
||||||
ordersIndex: {
|
ordersIndex: {
|
||||||
searchResult: 'vn-order-index vn-card > vn-table > div > vn-tbody > a.vn-tr',
|
searchResult: 'vn-order-index vn-card > vn-table > div > vn-tbody > a.vn-tr',
|
||||||
|
firstSearchResultTotal: 'vn-order-index vn-card > vn-table > div > vn-tbody vn-tr vn-td:nth-child(9)',
|
||||||
searchResultDate: 'vn-order-index vn-table vn-tbody > a:nth-child(1) > vn-td:nth-child(4)',
|
searchResultDate: 'vn-order-index vn-table vn-tbody > a:nth-child(1) > vn-td:nth-child(4)',
|
||||||
searchResultAddress: 'vn-order-index vn-table vn-tbody > a:nth-child(1) > vn-td:nth-child(6)',
|
searchResultAddress: 'vn-order-index vn-table vn-tbody > a:nth-child(1) > vn-td:nth-child(6)',
|
||||||
searchButton: 'vn-searchbar vn-icon[icon="search"]',
|
searchButton: 'vn-searchbar vn-icon[icon="search"]',
|
||||||
|
advancedSearchButton: 'vn-order-search-panel vn-submit[label="Search"]',
|
||||||
|
openAdvancedSearch: 'vn-searchbar vn-icon[icon="arrow_drop_down"]',
|
||||||
|
advancedSearchShowEmptyCheckbox: 'vn-order-search-panel vn-check[label="Show empty"]',
|
||||||
createOrderButton: 'vn-float-button',
|
createOrderButton: 'vn-float-button',
|
||||||
},
|
},
|
||||||
orderDescriptor: {
|
orderDescriptor: {
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
import selectors from '../../helpers/selectors.js';
|
||||||
|
import getBrowser from '../../helpers/puppeteer';
|
||||||
|
|
||||||
|
describe('Order Index', () => {
|
||||||
|
let browser;
|
||||||
|
let page;
|
||||||
|
|
||||||
|
beforeAll(async() => {
|
||||||
|
browser = await getBrowser();
|
||||||
|
page = browser.page;
|
||||||
|
await page.loginAndModule('employee', 'order');
|
||||||
|
});
|
||||||
|
|
||||||
|
afterAll(async() => {
|
||||||
|
await browser.close();
|
||||||
|
});
|
||||||
|
|
||||||
|
it(`should check the first search result doesn't contain a total of 0€`, async() => {
|
||||||
|
await page.waitToClick(selectors.ordersIndex.searchButton);
|
||||||
|
const result = await page.waitToGetProperty(selectors.ordersIndex.firstSearchResultTotal, 'innerText');
|
||||||
|
|
||||||
|
expect(result).not.toContain('0.00');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should search including empty orders', async() => {
|
||||||
|
await page.waitToClick(selectors.ordersIndex.openAdvancedSearch);
|
||||||
|
await page.waitToClick(selectors.ordersIndex.advancedSearchShowEmptyCheckbox);
|
||||||
|
await page.waitToClick(selectors.ordersIndex.advancedSearchButton);
|
||||||
|
await page.waitForTextInElement(selectors.ordersIndex.firstSearchResultTotal, '0.00');
|
||||||
|
const result = await page.waitToGetProperty(selectors.ordersIndex.firstSearchResultTotal, 'innerText');
|
||||||
|
|
||||||
|
expect(result).toContain('0.00');
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in New Issue