Skip to content

Commit

Permalink
test: fix flaky omnichannel send (#33768)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinSchoeler authored Oct 24, 2024
1 parent ad5d85b commit dd03d94
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 dd03d94

Please sign in to comment.