Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
seaona committed Feb 19, 2025
1 parent 46b8fee commit 2e08273
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@ class Confirmation {
}

async clickFooterConfirmButton() {
await this.driver.clickElementAndWaitForWindowToClose(
this.footerConfirmButton,
);
await this.driver.clickElement(this.footerConfirmButton);
}

async clickHeaderAccountDetailsButton() {
Expand Down
4 changes: 1 addition & 3 deletions test/e2e/page-objects/pages/home/activity-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,9 +252,7 @@ class ActivityListPage {
}

async click_confirmTransactionReplacement() {
await this.driver.clickElementAndWaitToDisappear(
this.confirmTransactionReplacementButton,
);
await this.driver.clickElement(this.confirmTransactionReplacementButton);
}

async check_waitForTransactionStatus(status: 'confirmed' | 'cancelled') {
Expand Down

0 comments on commit 2e08273

Please sign in to comment.