fix: refs #8441 remove unnecessary selector specificity for summary button in vehicle and route tests
This commit is contained in:
parent
3029265402
commit
693f6829f4
|
@ -1,4 +1,4 @@
|
|||
describe.skip('Route extended list', () => {
|
||||
describe('Route extended list', () => {
|
||||
const getSelector = (colField) => `tr:last-child > [data-col-field="${colField}"]`;
|
||||
|
||||
const selectors = {
|
||||
|
@ -25,7 +25,7 @@ describe.skip('Route extended list', () => {
|
|||
'.q-card .q-table > tbody > :nth-child(1) .q-checkbox',
|
||||
openSummaryBtn: 'tableAction-1',
|
||||
goToSummaryBtn: 'tableAction-2',
|
||||
summaryGoToSummaryBtn: '.summaryHeader [data-cy="goToSummaryBtn"]',
|
||||
summaryGoToSummaryBtn: '[data-cy="goToSummaryBtn"]',
|
||||
descriptorSubtitle: '[data-cy="vnDescriptor_subtitle"]',
|
||||
};
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ describe('Vehicle list', () => {
|
|||
saveFormBtn: 'FormModelPopup_save',
|
||||
descriptorTitle: '[data-cy="vnDescriptor_title"]',
|
||||
summaryPopupBtn: 'tr:last-child > .q-table--col-auto-width > .q-btn',
|
||||
summaryGoToSummaryBtn: '.summaryHeader [data-cy="goToSummaryBtn"]',
|
||||
summaryGoToSummaryBtn: '[data-cy="goToSummaryBtn"]',
|
||||
numberPlate: 'tr:last-child > [data-col-field="numberPlate"] > .no-padding',
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue