17 lines
510 B
JavaScript
17 lines
510 B
JavaScript
Cypress.Commands.add('getRow', (index = 1) =>
|
|
cy.get(`.vnTable .q-virtual-scroll__content tr:nth-child(${index})`),
|
|
);
|
|
Cypress.Commands.add('getRowCol', (field, index = 1) =>
|
|
cy.get(
|
|
`.vnTable .q-virtual-scroll__content > :nth-child(${index}) > [data-col-field="${field}"]`,
|
|
),
|
|
);
|
|
|
|
Cypress.Commands.add('vnTableCreateBtn', () =>
|
|
cy.dataCy('vnTableCreateBtn').should('exist').click(),
|
|
);
|
|
|
|
Cypress.Commands.add('waitTableScrollLoad', () =>
|
|
cy.waitForElement('[data-q-vs-anchor]'),
|
|
);
|