Run Playwright tests on Firefox & "Safari" nightly #3304
Annotations
7 errors, 5 warnings, and 1 notice
Run Playwright tests:
playwright/e2e/right-panel/file-panel.spec.ts#L62
1) [Firefox] › right-panel/file-panel.spec.ts:51:13 › FilePanel › render › should list tiles on the panel @screenshot
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('.mx_RoomView_body').locator('.mx_EventTile[data-layout=\'group\'] img[alt=\'riot.png\']')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('.mx_RoomView_body').locator('.mx_EventTile[data-layout=\'group\'] img[alt=\'riot.png\']')
60 |
61 | // Assert that the image exists and has the alt string
> 62 | await expect(roomViewBody.locator(".mx_EventTile[data-layout='group'] img[alt='riot.png']")).toBeVisible();
| ^
63 |
64 | // Assert that the audio player is rendered
65 | await expect(
at /home/runner/work/element-web/element-web/playwright/e2e/right-panel/file-panel.spec.ts:62:106
|
Run Playwright tests:
playwright/e2e/right-panel/file-panel.spec.ts#L62
1) [Firefox] › right-panel/file-panel.spec.ts:51:13 › FilePanel › render › should list tiles on the panel @screenshot
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('.mx_RoomView_body').locator('.mx_EventTile[data-layout=\'group\'] img[alt=\'riot.png\']')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('.mx_RoomView_body').locator('.mx_EventTile[data-layout=\'group\'] img[alt=\'riot.png\']')
60 |
61 | // Assert that the image exists and has the alt string
> 62 | await expect(roomViewBody.locator(".mx_EventTile[data-layout='group'] img[alt='riot.png']")).toBeVisible();
| ^
63 |
64 | // Assert that the audio player is rendered
65 | await expect(
at /home/runner/work/element-web/element-web/playwright/e2e/right-panel/file-panel.spec.ts:62:106
|
Run Playwright tests:
playwright/e2e/right-panel/file-panel.spec.ts#L62
1) [Firefox] › right-panel/file-panel.spec.ts:51:13 › FilePanel › render › should list tiles on the panel @screenshot
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('.mx_RoomView_body').locator('.mx_EventTile[data-layout=\'group\'] img[alt=\'riot.png\']')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('.mx_RoomView_body').locator('.mx_EventTile[data-layout=\'group\'] img[alt=\'riot.png\']')
60 |
61 | // Assert that the image exists and has the alt string
> 62 | await expect(roomViewBody.locator(".mx_EventTile[data-layout='group'] img[alt='riot.png']")).toBeVisible();
| ^
63 |
64 | // Assert that the audio player is rendered
65 | await expect(
at /home/runner/work/element-web/element-web/playwright/e2e/right-panel/file-panel.spec.ts:62:106
|
Run Playwright tests:
playwright/e2e/right-panel/file-panel.spec.ts#L146
2) [Firefox] › right-panel/file-panel.spec.ts:136:13 › FilePanel › render › should render the audio player and play the audio file on the panel
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('.mx_FilePanel .mx_RoomView_MessageList .mx_EventTile_mediaLine .mx_MAudioBody .mx_AudioPlayer_container').locator('.mx_AudioPlayer_mediaInfo').locator('.mx_AudioPlayer_mediaName').getByText('1sec.ogg')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('.mx_FilePanel .mx_RoomView_MessageList .mx_EventTile_mediaLine .mx_MAudioBody .mx_AudioPlayer_container').locator('.mx_AudioPlayer_mediaInfo').locator('.mx_AudioPlayer_mediaName').getByText('1sec.ogg')
144 | // Assert that the audio file information is rendered
145 | const mediaInfo = audioBody.locator(".mx_AudioPlayer_mediaInfo");
> 146 | await expect(mediaInfo.locator(".mx_AudioPlayer_mediaName").getByText("1sec.ogg")).toBeVisible();
| ^
147 | await expect(mediaInfo.locator(".mx_AudioPlayer_byline", { hasText: "00:01" })).toBeVisible();
148 | await expect(mediaInfo.locator(".mx_AudioPlayer_byline", { hasText: "(3.56 KB)" })).toBeVisible(); // actual size
149 |
at /home/runner/work/element-web/element-web/playwright/e2e/right-panel/file-panel.spec.ts:146:96
|
Run Playwright tests:
playwright/e2e/right-panel/file-panel.spec.ts#L146
2) [Firefox] › right-panel/file-panel.spec.ts:136:13 › FilePanel › render › should render the audio player and play the audio file on the panel
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('.mx_FilePanel .mx_RoomView_MessageList .mx_EventTile_mediaLine .mx_MAudioBody .mx_AudioPlayer_container').locator('.mx_AudioPlayer_mediaInfo').locator('.mx_AudioPlayer_mediaName').getByText('1sec.ogg')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('.mx_FilePanel .mx_RoomView_MessageList .mx_EventTile_mediaLine .mx_MAudioBody .mx_AudioPlayer_container').locator('.mx_AudioPlayer_mediaInfo').locator('.mx_AudioPlayer_mediaName').getByText('1sec.ogg')
144 | // Assert that the audio file information is rendered
145 | const mediaInfo = audioBody.locator(".mx_AudioPlayer_mediaInfo");
> 146 | await expect(mediaInfo.locator(".mx_AudioPlayer_mediaName").getByText("1sec.ogg")).toBeVisible();
| ^
147 | await expect(mediaInfo.locator(".mx_AudioPlayer_byline", { hasText: "00:01" })).toBeVisible();
148 | await expect(mediaInfo.locator(".mx_AudioPlayer_byline", { hasText: "(3.56 KB)" })).toBeVisible(); // actual size
149 |
at /home/runner/work/element-web/element-web/playwright/e2e/right-panel/file-panel.spec.ts:146:96
|
Run Playwright tests:
playwright/e2e/right-panel/file-panel.spec.ts#L146
2) [Firefox] › right-panel/file-panel.spec.ts:136:13 › FilePanel › render › should render the audio player and play the audio file on the panel
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('.mx_FilePanel .mx_RoomView_MessageList .mx_EventTile_mediaLine .mx_MAudioBody .mx_AudioPlayer_container').locator('.mx_AudioPlayer_mediaInfo').locator('.mx_AudioPlayer_mediaName').getByText('1sec.ogg')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('.mx_FilePanel .mx_RoomView_MessageList .mx_EventTile_mediaLine .mx_MAudioBody .mx_AudioPlayer_container').locator('.mx_AudioPlayer_mediaInfo').locator('.mx_AudioPlayer_mediaName').getByText('1sec.ogg')
144 | // Assert that the audio file information is rendered
145 | const mediaInfo = audioBody.locator(".mx_AudioPlayer_mediaInfo");
> 146 | await expect(mediaInfo.locator(".mx_AudioPlayer_mediaName").getByText("1sec.ogg")).toBeVisible();
| ^
147 | await expect(mediaInfo.locator(".mx_AudioPlayer_byline", { hasText: "00:01" })).toBeVisible();
148 | await expect(mediaInfo.locator(".mx_AudioPlayer_byline", { hasText: "(3.56 KB)" })).toBeVisible(); // actual size
149 |
at /home/runner/work/element-web/element-web/playwright/e2e/right-panel/file-panel.spec.ts:146:96
|
Run Playwright tests
Process completed with exit code 1.
|
Run Playwright tests:
[Firefox] › messages/messages.spec.ts#L1
[Firefox] › messages/messages.spec.ts took 2.9m
|
Run Playwright tests:
[Firefox] › pinned-messages/pinned-messages.spec.ts#L1
[Firefox] › pinned-messages/pinned-messages.spec.ts took 2.2m
|
Run Playwright tests:
[Firefox] › login/login.spec.ts#L1
[Firefox] › login/login.spec.ts took 1.3m
|
Run Playwright tests:
[Firefox] › right-panel/right-panel.spec.ts#L1
[Firefox] › right-panel/right-panel.spec.ts took 1.2m
|
Run Playwright tests:
[Firefox] › settings/account-user-settings-tab.spec.ts#L1
[Firefox] › settings/account-user-settings-tab.spec.ts took 55.6s
|
Run Playwright tests
2 failed
[Firefox] › right-panel/file-panel.spec.ts:51:13 › FilePanel › render › should list tiles on the panel @screenshot
[Firefox] › right-panel/file-panel.spec.ts:136:13 › FilePanel › render › should render the audio player and play the audio file on the panel
2 skipped
99 passed (18.4m)
|
Loading