chore(demo): add provideClientHydration
#11027
e2e.yml
on: pull_request
Build demo
5m 9s
Cypress / Component Testing
5m 17s
Matrix: playwright
E2E result
1m 14s
Playwright E2E Tests matrix result
0s
Annotations
5 errors, 60 warnings, and 36 notices
[chromium] › tests/core/hint/hint.pw.spec.ts:71:13 › TuiHint › false mode hint with delay:
projects/demo-playwright/tests/core/hint/hint.pw.spec.ts#L90
1) [chromium] › tests/core/hint/hint.pw.spec.ts:71:13 › TuiHint › false mode hint with delay ─────
Error: expect(page).toHaveScreenshot(expected)
72139 pixels (ratio 0.13 of all image pixels) are different.
Expected: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/snapshots/tests/core/hint/hint.pw.spec.ts-snapshots/03-hint-mode-false-tuiHintShowDelay-1000-wait-500-chromium-linux.png
Received: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-core-hint-hint.pw-TuiHint-false-mode-hint-with-delay-chromium/03-hint-mode-false-tuiHintShowDelay-1000-wait-500-actual.png
Diff: /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-core-hint-hint.pw-TuiHint-false-mode-hint-with-delay-chromium/03-hint-mode-false-tuiHintShowDelay-1000-wait-500-diff.png
Call log:
- expect.toHaveScreenshot(03-hint-mode-false-tuiHintShowDelay-1000-wait-500.png) with timeout 5000ms
- verifying given screenshot expectation
- taking page screenshot
- disabled all CSS animations
- waiting for fonts to load...
- fonts loaded
- 72139 pixels (ratio 0.13 of all image pixels) are different.
- waiting 100ms before taking screenshot
- taking page screenshot
- disabled all CSS animations
- waiting for fonts to load...
- fonts loaded
- captured a stable screenshot
- 72139 pixels (ratio 0.13 of all image pixels) are different.
88 | await page.waitForTimeout(500);
89 |
> 90 | await expect(page).toHaveScreenshot(
| ^
91 | `03-hint-mode-${mode}-tuiHintShowDelay-1000-wait-500.png`,
92 | );
93 |
at /home/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests/core/hint/hint.pw.spec.ts:90:32
|
[webkit] › tests/core/data-list/data-list.pw.spec.ts:176:9 › DataList › Options with long text:
projects/demo-playwright/tests/core/data-list/data-list.pw.spec.ts#L187
1) [webkit] › tests/core/data-list/data-list.pw.spec.ts:176:9 › DataList › Options with long text
Error: Timed out 5000ms waiting for expect(page).toHaveScreenshot(expected)
Failed to take two consecutive stable screenshots.
Previous: /Users/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-core-data-list-data--8393e-List-Options-with-long-text-webkit/10-data-list-previous.png
Received: /Users/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-core-data-list-data--8393e-List-Options-with-long-text-webkit/10-data-list-actual.png
Diff: /Users/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-core-data-list-data--8393e-List-Options-with-long-text-webkit/10-data-list-diff.png
Call log:
- expect.toHaveScreenshot(10-data-list.png) with timeout 5000ms
- generating new stable screenshot expectation
- taking page screenshot
- disabled all CSS animations
- waiting for fonts to load...
- fonts loaded
- waiting 100ms before taking screenshot
- taking page screenshot
- disabled all CSS animations
- waiting for fonts to load...
- fonts loaded
- 11810 pixels (ratio 0.01 of all image pixels) are different.
- waiting 250ms before taking screenshot
- Timeout 5000ms exceeded.
185 | await documentationPagePO.prepareBeforeScreenshot();
186 |
> 187 | await expect(page).toHaveScreenshot('10-data-list.png');
| ^
188 | });
189 | });
190 |
at /Users/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests/core/data-list/data-list.pw.spec.ts:187:28
|
[webkit] › tests/demo/demo.pw.spec.ts:10:13 › Demo › /components/navigation:
projects/demo-playwright/tests/demo/demo.pw.spec.ts#L40
1) [webkit] › tests/demo/demo.pw.spec.ts:10:13 › Demo › /components/navigation ───────────────────
Error: expect(locator).toHaveScreenshot(expected)
116 pixels (ratio 0.01 of all image pixels) are different.
Expected: /Users/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/snapshots/tests/demo/demo.pw.spec.ts-snapshots/components-navigation/1-webkit-darwin.png
Received: /Users/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-demo-demo.pw-Demo-components-navigation-webkit/components-navigation/1-actual.png
Diff: /Users/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests-results/tests-demo-demo.pw-Demo-components-navigation-webkit/components-navigation/1-diff.png
Call log:
- expect.toHaveScreenshot(components-navigation/1.png) with timeout 5000ms
- verifying given screenshot expectation
- waiting for getByTestId('tui-doc-example').first()
- locator resolved to <div _ngcontent-ng-c644840128="" automation-id="tui-doc-example" class="t-demo ng-star-inserted">…</div>
- taking element screenshot
- disabled all CSS animations
- waiting for fonts to load...
- fonts loaded
- attempting scroll into view action
- waiting for element to be stable
- 116 pixels (ratio 0.01 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for getByTestId('tui-doc-example').first()
- locator resolved to <div _ngcontent-ng-c644840128="" automation-id="tui-doc-example" class="t-demo ng-star-inserted">…</div>
- taking element screenshot
- disabled all CSS animations
- waiting for fonts to load...
- fonts loaded
- attempting scroll into view action
- waiting for element to be stable
- captured a stable screenshot
- 116 pixels (ratio 0.01 of all image pixels) are different.
38 | await page.waitForTimeout(150);
39 |
> 40 | await expect(example).toHaveScreenshot([
| ^
41 | path.replace('/', '').replaceAll('/', '-'),
42 | `${i + 1}.png`,
43 | ]);
at /Users/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests/demo/demo.pw.spec.ts:40:39
|
[webkit] › tests/legacy/input-year/input-year.pw.spec.ts:26:13 › InputYear › Does not allow incorrect year entry › 2040 => 2020:
projects/demo-playwright/tests/legacy/input-year/input-year.pw.spec.ts#L27
1) [webkit] › tests/legacy/input-year/input-year.pw.spec.ts:26:13 › InputYear › Does not allow incorrect year entry › 2040 => 2020
TimeoutError: locator.pressSequentially: Timeout 10000ms exceeded.
Call log:
- waiting for locator('#demo-content').locator('input')
- locator resolved to <input tabindex="0" aria-invalid="false" _ngcontent-ng-c3831396199="" id="tui_interactive_331601061540000" class="t-input ng-untouched ng-pristine ng-valid" automation-id="tui-primitive-textfield__native-input"/>
- elementHandle.type("2040")
25 |
26 | test('2040 => 2020', async ({page}) => {
> 27 | await input.pressSequentially('2040');
| ^
28 |
29 | await expect(page).toHaveScreenshot('02-input-year.png');
30 | });
at /Users/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests/legacy/input-year/input-year.pw.spec.ts:27:25
|
[webkit] › tests/legacy/input-year/input-year.pw.spec.ts:32:13 › InputYear › Does not allow incorrect year entry › 0000 => blur => 0:
projects/demo-playwright/tests/legacy/input-year/input-year.pw.spec.ts#L35
2) [webkit] › tests/legacy/input-year/input-year.pw.spec.ts:32:13 › InputYear › Does not allow incorrect year entry › 0000 => blur => 0
Error: Timed out 5000ms waiting for expect(page).toHaveScreenshot(expected)
Timeout 5000ms exceeded.
Call log:
- expect.toHaveScreenshot(03-input-year.png) with timeout 5000ms
- generating new stable screenshot expectation
- taking page screenshot
- disabled all CSS animations
- waiting for fonts to load...
- Timeout 5000ms exceeded.
33 | await input.pressSequentially('0000');
34 |
> 35 | await expect(page).toHaveScreenshot('03-input-year.png');
| ^
36 |
37 | await input.blur();
38 |
at /Users/runner/work/taiga-ui/taiga-ui/projects/demo-playwright/tests/legacy/input-year/input-year.pw.spec.ts:35:32
|
Build demo
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Cypress / Component Testing
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Playwright / ubuntu-latest / 1 of 9
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Playwright / ubuntu-latest / 8 of 9
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Playwright / ubuntu-latest / 7 of 9
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Playwright / ubuntu-latest / 2 of 9
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Playwright / ubuntu-latest / 4 of 9
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Playwright / ubuntu-latest / 6 of 9
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Playwright / ubuntu-latest / 9 of 9
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Playwright / ubuntu-latest / 5 of 9
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Playwright / macos-latest / 1 of 9
pkgconf 2.3.0_1 is already installed and up-to-date.
To reinstall 2.3.0_1, run:
brew reinstall pkgconf
|
Playwright / macos-latest / 1 of 9
cairo 1.18.2 is already installed and up-to-date.
To reinstall 1.18.2, run:
brew reinstall cairo
|
Playwright / macos-latest / 1 of 9
libpng 1.6.44 is already installed and up-to-date.
To reinstall 1.6.44, run:
brew reinstall libpng
|
Playwright / macos-latest / 1 of 9
jpeg-turbo 3.0.4 is already installed and up-to-date.
To reinstall 3.0.4, run:
brew reinstall jpeg-turbo
|
Playwright / macos-latest / 1 of 9
giflib 5.2.2 is already installed and up-to-date.
To reinstall 5.2.2, run:
brew reinstall giflib
|
Slow Test:
[webkit] › tests/addon-charts/pie-chart/pie-chart.pw.spec.ts#L1
[webkit] › tests/addon-charts/pie-chart/pie-chart.pw.spec.ts took 15.3s
|
Playwright / macos-latest / 2 of 9
pkgconf 2.3.0_1 is already installed and up-to-date.
To reinstall 2.3.0_1, run:
brew reinstall pkgconf
|
Playwright / macos-latest / 2 of 9
cairo 1.18.2 is already installed and up-to-date.
To reinstall 1.18.2, run:
brew reinstall cairo
|
Playwright / macos-latest / 2 of 9
libpng 1.6.44 is already installed and up-to-date.
To reinstall 1.6.44, run:
brew reinstall libpng
|
Playwright / macos-latest / 2 of 9
jpeg-turbo 3.0.4 is already installed and up-to-date.
To reinstall 3.0.4, run:
brew reinstall jpeg-turbo
|
Playwright / macos-latest / 2 of 9
giflib 5.2.2 is already installed and up-to-date.
To reinstall 5.2.2, run:
brew reinstall giflib
|
Playwright / macos-latest / 4 of 9
pkgconf 2.3.0_1 is already installed and up-to-date.
To reinstall 2.3.0_1, run:
brew reinstall pkgconf
|
Playwright / macos-latest / 4 of 9
cairo 1.18.2 is already installed and up-to-date.
To reinstall 1.18.2, run:
brew reinstall cairo
|
Playwright / macos-latest / 4 of 9
libpng 1.6.44 is already installed and up-to-date.
To reinstall 1.6.44, run:
brew reinstall libpng
|
Playwright / macos-latest / 4 of 9
jpeg-turbo 3.0.4 is already installed and up-to-date.
To reinstall 3.0.4, run:
brew reinstall jpeg-turbo
|
Playwright / macos-latest / 4 of 9
giflib 5.2.2 is already installed and up-to-date.
To reinstall 5.2.2, run:
brew reinstall giflib
|
Playwright / macos-latest / 5 of 9
pkgconf 2.3.0_1 is already installed and up-to-date.
To reinstall 2.3.0_1, run:
brew reinstall pkgconf
|
Playwright / macos-latest / 5 of 9
cairo 1.18.2 is already installed and up-to-date.
To reinstall 1.18.2, run:
brew reinstall cairo
|
Playwright / macos-latest / 5 of 9
libpng 1.6.44 is already installed and up-to-date.
To reinstall 1.6.44, run:
brew reinstall libpng
|
Playwright / macos-latest / 5 of 9
jpeg-turbo 3.0.4 is already installed and up-to-date.
To reinstall 3.0.4, run:
brew reinstall jpeg-turbo
|
Playwright / macos-latest / 5 of 9
giflib 5.2.2 is already installed and up-to-date.
To reinstall 5.2.2, run:
brew reinstall giflib
|
Playwright / ubuntu-latest / 3 of 9
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Slow Test:
[webkit] › tests/kit/input-table/input-table.pw.spec.ts#L1
[webkit] › tests/kit/input-table/input-table.pw.spec.ts took 16.4s
|
Playwright / macos-latest / 6 of 9
pkgconf 2.3.0_1 is already installed and up-to-date.
To reinstall 2.3.0_1, run:
brew reinstall pkgconf
|
Playwright / macos-latest / 6 of 9
cairo 1.18.2 is already installed and up-to-date.
To reinstall 1.18.2, run:
brew reinstall cairo
|
Playwright / macos-latest / 6 of 9
libpng 1.6.44 is already installed and up-to-date.
To reinstall 1.6.44, run:
brew reinstall libpng
|
Playwright / macos-latest / 6 of 9
jpeg-turbo 3.0.4 is already installed and up-to-date.
To reinstall 3.0.4, run:
brew reinstall jpeg-turbo
|
Playwright / macos-latest / 6 of 9
giflib 5.2.2 is already installed and up-to-date.
To reinstall 5.2.2, run:
brew reinstall giflib
|
Playwright / macos-latest / 8 of 9
pkgconf 2.3.0_1 is already installed and up-to-date.
To reinstall 2.3.0_1, run:
brew reinstall pkgconf
|
Playwright / macos-latest / 8 of 9
cairo 1.18.2 is already installed and up-to-date.
To reinstall 1.18.2, run:
brew reinstall cairo
|
Playwright / macos-latest / 8 of 9
libpng 1.6.44 is already installed and up-to-date.
To reinstall 1.6.44, run:
brew reinstall libpng
|
Playwright / macos-latest / 8 of 9
jpeg-turbo 3.0.4 is already installed and up-to-date.
To reinstall 3.0.4, run:
brew reinstall jpeg-turbo
|
Playwright / macos-latest / 8 of 9
giflib 5.2.2 is already installed and up-to-date.
To reinstall 5.2.2, run:
brew reinstall giflib
|
Playwright / macos-latest / 3 of 9
pkgconf 2.3.0_1 is already installed and up-to-date.
To reinstall 2.3.0_1, run:
brew reinstall pkgconf
|
Playwright / macos-latest / 3 of 9
cairo 1.18.2 is already installed and up-to-date.
To reinstall 1.18.2, run:
brew reinstall cairo
|
Playwright / macos-latest / 3 of 9
libpng 1.6.44 is already installed and up-to-date.
To reinstall 1.6.44, run:
brew reinstall libpng
|
Playwright / macos-latest / 3 of 9
jpeg-turbo 3.0.4 is already installed and up-to-date.
To reinstall 3.0.4, run:
brew reinstall jpeg-turbo
|
Playwright / macos-latest / 3 of 9
giflib 5.2.2 is already installed and up-to-date.
To reinstall 5.2.2, run:
brew reinstall giflib
|
Playwright / macos-latest / 7 of 9
pkgconf 2.3.0_1 is already installed and up-to-date.
To reinstall 2.3.0_1, run:
brew reinstall pkgconf
|
Playwright / macos-latest / 7 of 9
cairo 1.18.2 is already installed and up-to-date.
To reinstall 1.18.2, run:
brew reinstall cairo
|
Playwright / macos-latest / 7 of 9
libpng 1.6.44 is already installed and up-to-date.
To reinstall 1.6.44, run:
brew reinstall libpng
|
Playwright / macos-latest / 7 of 9
jpeg-turbo 3.0.4 is already installed and up-to-date.
To reinstall 3.0.4, run:
brew reinstall jpeg-turbo
|
Playwright / macos-latest / 7 of 9
giflib 5.2.2 is already installed and up-to-date.
To reinstall 5.2.2, run:
brew reinstall giflib
|
Playwright / macos-latest / 9 of 9
pkgconf 2.3.0_1 is already installed and up-to-date.
To reinstall 2.3.0_1, run:
brew reinstall pkgconf
|
Playwright / macos-latest / 9 of 9
cairo 1.18.2 is already installed and up-to-date.
To reinstall 1.18.2, run:
brew reinstall cairo
|
Playwright / macos-latest / 9 of 9
libpng 1.6.44 is already installed and up-to-date.
To reinstall 1.6.44, run:
brew reinstall libpng
|
Playwright / macos-latest / 9 of 9
jpeg-turbo 3.0.4 is already installed and up-to-date.
To reinstall 3.0.4, run:
brew reinstall jpeg-turbo
|
Playwright / macos-latest / 9 of 9
giflib 5.2.2 is already installed and up-to-date.
To reinstall 5.2.2, run:
brew reinstall giflib
|
Playwright E2E Tests matrix result
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
E2E result
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
🎭 Playwright Run Summary
110 passed (1.3m)
|
🎭 Playwright Run Summary
110 passed (1.4m)
|
🎭 Playwright Run Summary
109 passed (1.4m)
|
🎭 Playwright Run Summary
109 passed (1.5m)
|
🎭 Playwright Run Summary
109 passed (1.9m)
|
🎭 Playwright Run Summary
109 passed (1.6m)
|
🎭 Playwright Run Summary
110 passed (1.9m)
|
🎭 Playwright Run Summary
1 flaky
[chromium] › tests/core/hint/hint.pw.spec.ts:71:13 › TuiHint › false mode hint with delay ──────
109 passed (1.7m)
|
🎭 Playwright Run Summary
110 passed (2.1m)
|
🎭 Playwright Run Summary
110 passed (1.9m)
|
🎭 Playwright Run Summary
109 passed (2.0m)
|
🎭 Playwright Run Summary
109 passed (1.7m)
|
🎭 Playwright Run Summary
109 passed (1.6m)
|
🎭 Playwright Run Summary
109 passed (1.7m)
|
🎭 Playwright Run Summary
110 passed (2.5m)
|
🎭 Playwright Run Summary
110 passed (2.8m)
|
🎭 Playwright Run Summary
8 skipped
102 passed (1.6m)
|
🎭 Playwright Run Summary
8 skipped
102 passed (2.1m)
|
🎭 Playwright Run Summary
44 skipped
66 passed (1.9m)
|
🎭 Playwright Run Summary
1 flaky
[webkit] › tests/core/data-list/data-list.pw.spec.ts:176:9 › DataList › Options with long text ─
44 skipped
65 passed (2.3m)
|
🎭 Playwright Run Summary
110 passed (3.3m)
|
🎭 Playwright Run Summary
110 passed (3.0m)
|
🎭 Playwright Run Summary
110 passed (4.8m)
|
🎭 Playwright Run Summary
110 passed (4.2m)
|
🎭 Playwright Run Summary
110 passed (6.7m)
|
🎭 Playwright Run Summary
110 passed (8.0m)
|
🎭 Playwright Run Summary
1 flaky
[webkit] › tests/demo/demo.pw.spec.ts:10:13 › Demo › /components/navigation ────────────────────
17 skipped
91 passed (2.3m)
|
🎭 Playwright Run Summary
17 skipped
92 passed (2.6m)
|
🎭 Playwright Run Summary
109 passed (3.2m)
|
🎭 Playwright Run Summary
109 passed (2.0m)
|
🎭 Playwright Run Summary
110 passed (10.9m)
|
🎭 Playwright Run Summary
110 passed (9.2m)
|
🎭 Playwright Run Summary
5 skipped
104 passed (4.3m)
|
🎭 Playwright Run Summary
5 skipped
104 passed (3.6m)
|
🎭 Playwright Run Summary
2 flaky
[webkit] › tests/legacy/input-year/input-year.pw.spec.ts:26:13 › InputYear › Does not allow incorrect year entry › 2040 => 2020
[webkit] › tests/legacy/input-year/input-year.pw.spec.ts:32:13 › InputYear › Does not allow incorrect year entry › 0000 => blur => 0
10 skipped
97 passed (2.7m)
|
🎭 Playwright Run Summary
10 skipped
99 passed (2.1m)
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
cy_baseline_b00df8215008437c7a3e4fdd21c645470fe8aeec
Expired
|
113 KB |
|
playwright-blob-artifacts--b00df8215008437c7a3e4fdd21c645470fe8aeec-12374002681-9986-Linux_1
Expired
|
257 KB |
|
playwright-blob-artifacts--b00df8215008437c7a3e4fdd21c645470fe8aeec-12374002681-9986-Linux_2
Expired
|
573 KB |
|
playwright-blob-artifacts--b00df8215008437c7a3e4fdd21c645470fe8aeec-12374002681-9986-Linux_3
Expired
|
1.45 MB |
|
playwright-blob-artifacts--b00df8215008437c7a3e4fdd21c645470fe8aeec-12374002681-9986-Linux_4
Expired
|
529 KB |
|
playwright-blob-artifacts--b00df8215008437c7a3e4fdd21c645470fe8aeec-12374002681-9986-Linux_5
Expired
|
830 KB |
|
playwright-blob-artifacts--b00df8215008437c7a3e4fdd21c645470fe8aeec-12374002681-9986-Linux_6
Expired
|
436 KB |
|
playwright-blob-artifacts--b00df8215008437c7a3e4fdd21c645470fe8aeec-12374002681-9986-Linux_7
Expired
|
342 KB |
|
playwright-blob-artifacts--b00df8215008437c7a3e4fdd21c645470fe8aeec-12374002681-9986-Linux_8
Expired
|
356 KB |
|
playwright-blob-artifacts--b00df8215008437c7a3e4fdd21c645470fe8aeec-12374002681-9986-Linux_9
Expired
|
384 KB |
|
playwright-blob-artifacts--b00df8215008437c7a3e4fdd21c645470fe8aeec-12374002681-9986-macOS_1
Expired
|
233 KB |
|
playwright-blob-artifacts--b00df8215008437c7a3e4fdd21c645470fe8aeec-12374002681-9986-macOS_2
Expired
|
236 KB |
|
playwright-blob-artifacts--b00df8215008437c7a3e4fdd21c645470fe8aeec-12374002681-9986-macOS_3
Expired
|
1.41 MB |
|
playwright-blob-artifacts--b00df8215008437c7a3e4fdd21c645470fe8aeec-12374002681-9986-macOS_4
Expired
|
529 KB |
|
playwright-blob-artifacts--b00df8215008437c7a3e4fdd21c645470fe8aeec-12374002681-9986-macOS_5
Expired
|
792 KB |
|
playwright-blob-artifacts--b00df8215008437c7a3e4fdd21c645470fe8aeec-12374002681-9986-macOS_6
Expired
|
1.23 MB |
|
playwright-blob-artifacts--b00df8215008437c7a3e4fdd21c645470fe8aeec-12374002681-9986-macOS_7
Expired
|
312 KB |
|
playwright-blob-artifacts--b00df8215008437c7a3e4fdd21c645470fe8aeec-12374002681-9986-macOS_8
Expired
|
340 KB |
|
playwright-blob-artifacts--b00df8215008437c7a3e4fdd21c645470fe8aeec-12374002681-9986-macOS_9
Expired
|
313 KB |
|