Skip to content

Commit

Permalink
test: fix flaky omnichannel send
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinSchoeler committed Oct 24, 2024
1 parent c2b92f4 commit 9051adb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export class HomeContent {
await this.joinRoomIfNeeded();
await this.page.waitForSelector('[name="msg"]:not([disabled])');
await this.page.locator('[name="msg"]').fill(text);
await this.page.getByLabel('Send').click();
await this.page.locator('button[aria-label="Send"]').click();
}

async dispatchSlashCommand(text: string): Promise<void> {
Expand Down

0 comments on commit 9051adb

Please sign in to comment.