Update electron to 27.1.2

This commit is contained in:
Fedor Indutny 2023-11-28 00:44:53 +01:00 committed by GitHub
parent bb6e011488
commit ceb1564e6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 21 additions and 19 deletions

View file

@ -219,8 +219,9 @@ describe('story/messaging', function (this: Mocha.Suite) {
debug('Create and send a story to the group');
await window.getByRole('button', { name: 'Add a story' }).first().click();
await window.getByRole('button', { name: 'Text story' }).click();
await window.locator('.TextAttachment').click();
await window.getByRole('textbox', { name: 'Add text' }).type('hello');
// Note: For some reason `.click()` doesn't work here anymore.
await window.locator('.TextAttachment').dispatchEvent('click');
await window.getByRole('textbox', { name: 'Add text' }).fill('hello');
await window.getByRole('button', { name: 'Next' }).click();
await window
.locator('.Checkbox__container')