Calls Tab & Group Call Disposition

This commit is contained in:
Jamie Kyle 2023-08-08 17:53:06 -07:00 committed by GitHub
parent 620e85ca01
commit 1eaabb6734
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
139 changed files with 9182 additions and 2721 deletions

View file

@ -79,8 +79,9 @@ describe('story/no-sender-key', function needsName() {
debug('Posting a new story');
{
const storiesPane = window.locator('.Stories');
const storiesCreator = window.locator('.StoryCreator');
await window.locator('button.module-main-header__stories-icon').click();
await window.getByTestId('NavTabsItem--Stories').click();
await storiesPane
.locator('button.Stories__pane__add-story__button')
@ -93,13 +94,15 @@ describe('story/no-sender-key', function needsName() {
.click();
debug('Focusing textarea');
await storiesPane.locator('.TextAttachment__story').click();
await storiesCreator.locator('.TextAttachment__story').click();
debug('Entering text');
await storiesPane.locator('.TextAttachment__text__textarea').type('123');
await storiesCreator
.locator('.TextAttachment__text__textarea')
.type('123');
debug('Clicking "Next"');
await storiesPane
await storiesCreator
.locator('.StoryCreator__toolbar button >> "Next"')
.click();