Skip to content

Commit

Permalink
Merge pull request #254 from ProcessMaker/addValidationFilteringPage
Browse files Browse the repository at this point in the history
add filtering validation
  • Loading branch information
karlOS123testing authored Sep 26, 2024
2 parents 58f831a + b177475 commit 226aba2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pages/filtering.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ export class Filtering {
*/
table_openFilterByColumn(column) {
//this.table_waitForTableData();
cy.get(selectors.columnHeader.replace("{col}", column)).trigger(
cy.wait(2000);
cy.get('[data-cy="tasks-table"]').should("be.visible");
cy.get(selectors.columnHeader.replace("{col}", column)).should("be.visible").trigger(
"mouseover"
);
cy.get(selectors.openFilter.replace("{col}", column)).click({
Expand Down

0 comments on commit 226aba2

Please sign in to comment.