kpmck / cypress-ag-grid

Cypress plugin for interacting with ag grid
30 stars 17 forks source link

agGridColumnFilterTextMenu does not work in ag-grid community #3

Closed air2 closed 3 years ago

air2 commented 3 years ago

The ag-grid community edition does not have a tabbed column menu (only the filter part is shown) Therefor the test will hang on .find('ag-tab') which will never be resolved since it is not there.

function getMenuTabElement(agGridElement, tab) {
  return cy
    .get(agGridElement)
    .find(".ag-tab")
    .find(`.ag-icon-${tab}`)
    .filter(":visible");
}

This is found in the above code. So for the community edition there are no tabs. And the test fails always.

kpmck commented 3 years ago

Resolved with PR #4 - thank you for contributing!