Skip to content

Commit

Permalink
Merge branch 'master' of github.com:kpmck/cypress-ag-grid
Browse files Browse the repository at this point in the history
  • Loading branch information
kpmck committed Dec 19, 2022
2 parents 328f089 + 72bfb28 commit e652bd1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cypress-ag-grid",
"version": "2.0.1",
"version": "2.0.2",
"description": "Cypress plugin to interact with ag grid",
"main": "src/index.js",
"repository": {
Expand Down
3 changes: 2 additions & 1 deletion src/agGrid/agGridInteractions.js
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,8 @@ export function filterByCheckboxColumnMenu(agGridElement, options) {
const _options = populateSearchCriteria(
_searchCriteria,
options.hasApplyButton,
options.noMenuTabs
options.noMenuTabs,
options.selectAllLocaleText
);
_filterByCheckboxColumnMenu(agGridElement, _options);
});
Expand Down
1 change: 1 addition & 0 deletions src/agGrid/agGridValidations.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export function validateTableRowSubset(agGridElement, actualTableData,expectedTa
export function validateTablePages(agGridElement,expectedPaginatedTableData, onlyColumns = {}) {
let iterator = 0;
expectedPaginatedTableData.forEach((expectedPage) => {
cy.get('.ag-cell').should('be.visible');
cy.get(agGridElement)
.getAgGridData(onlyColumns)
.then((table) => {
Expand Down

0 comments on commit e652bd1

Please sign in to comment.