Skip to content

Commit

Permalink
Fix SALEOR_28
Browse files Browse the repository at this point in the history
  • Loading branch information
poulch committed Feb 26, 2025
1 parent 2bc8dda commit b76d210
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions playwright/pages/dialogs/orderCreateDialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ export class OrderCreateDialog {

async completeOrderCreateDialogWithFirstChannel() {
await this.expandChannelsSearchList();
await this.channelOption.first().waitFor({ state: "visible" });
await this.channelOption.first().click();
await this.channelOption.first().waitFor({ state: "hidden" });
await this.channelNameInput.blur();
await this.clickConfirmButton();
}

Expand Down

0 comments on commit b76d210

Please sign in to comment.