Browse Source

test(grid-locked): expand element should always exist

pull/4153/head
mateonunez 2 years ago
parent
commit
ddce847179
  1. 3
      scripts/cypress/integration/common/4d_table_view_grid_locked.js

3
scripts/cypress/integration/common/4d_table_view_grid_locked.js

@ -76,7 +76,8 @@ export const genTest = (apiType, dbType) => {
mainPage.getCell("Country", 1).dblclick();
mainPage.getCell("Country", 1).find("input").should(`${vString}exist`);
cy.get(".nc-row-expand").should(`${vString}exist`);
// the expand button should be always enabled
cy.get(".nc-row-expand").should("exist");
// check if add/ expand options available for 'has many' column type
// GUI-v2: TBD

Loading…
Cancel
Save