Fix local e2e tests

This commit is contained in:
Chocobozzz 2024-12-16 10:34:12 +01:00
parent f80157eff8
commit 43a053eb49
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 3 additions and 2 deletions

View File

@ -211,7 +211,7 @@ export class VideoWatchPage {
async createReply (comment: string) {
const replyButton = await $('button.comment-action-reply')
await replyButton.waitForClickable()
await replyButton.scrollIntoView()
await replyButton.scrollIntoView({ block: 'center' })
await replyButton.click()
const textarea = await $('my-video-comment my-video-comment-add textarea')
@ -220,11 +220,12 @@ export class VideoWatchPage {
const confirmButton = await $('my-video-comment .comment-buttons .primary-button')
await confirmButton.waitForClickable()
await replyButton.scrollIntoView({ block: 'center' })
await confirmButton.click()
const createdComment = await $('.is-child .comment-html p')
await createdComment.waitForDisplayed()
return expect(await createdComment.getTagName()).toBe(comment)
return expect(await createdComment.getText()).toBe(comment)
}
}