Skip to content

Commit

Permalink
fix api
Browse files Browse the repository at this point in the history
  • Loading branch information
shivankacker committed Nov 27, 2024
1 parent 7e9a5d9 commit 1fb9d4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/pageobject/utils/paginationHelpers.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export const pageNavigation = {
navigateToNextPage() {
cy.intercept("GET", "**/api/patient/?page=2").as("getPage2");
cy.get("button#next-pages").click();
cy.intercept("GET", "**/v1/patient/?page=2").as("getPage2");
cy.wait("@getPage2");
},

Expand Down

0 comments on commit 1fb9d4d

Please sign in to comment.