Playwright upgrade and small addition to ChannelsPage helper (#22978)

* partial commit

* upgrade playwright to 1.32.3 (ui + project dependencies support)

* revert empty line

---------

Co-authored-by: Mattermost Build <build@mattermost.com>
Этот коммит содержится в:
José Peso
2023-04-18 04:46:49 +02:00
коммит произвёл GitHub
родитель 61456b6846
Коммит 831ea38f7e
5 изменённых файлов: 50 добавлений и 17 удалений

Просмотреть файл

@@ -49,6 +49,10 @@ export default class ChannelsPage {
await this.postCreate.postMessage(message);
}
async sendMessage() {
await this.postCreate.sendMessage();
}
async getFirstPost() {
await this.page.getByTestId('postView').first().waitFor();
const post = await this.page.getByTestId('postView').first();