[main] Update nextcloud/ocp dependency #71
playwright.yml
on: pull_request
Matrix: playwright
playwright-summary
6s
Annotations
13 errors and 2 notices
|
[chromium] βΊ playwright/e2e/view-mandatory-state.spec.ts:113:2 βΊ Mandatory Column Functionality βΊ EditRow - Mandatory Field Validation:
playwright/e2e/view-mandatory-state.spec.ts#L142
2) [chromium] βΊ playwright/e2e/view-mandatory-state.spec.ts:113:2 βΊ Mandatory Column Functionality βΊ EditRow - Mandatory Field Validation
Error: expect(locator).toBeVisible() failed
Locator: locator('[data-cy="editRowModal"]').locator('.notecard--error, .note-card--error, .error, [type="error"]').first()
Expected: visible
Timeout: 15000ms
Error: element(s) not found
Call log:
- Expect "toBeVisible" with timeout 15000ms
- waiting for locator('[data-cy="editRowModal"]').locator('.notecard--error, .note-card--error, .error, [type="error"]').first()
140 | await input.blur()
141 |
> 142 | await expect(page.locator('[data-cy="editRowModal"]').locator('.notecard--error, .note-card--error, .error, [type="error"]').first()).toBeVisible({ timeout: 15000 })
| ^
143 |
144 | // Check that save button is disabled
145 | const saveBtn = page.locator('[data-cy="editRowSaveButton"]')
at /home/runner/work/tables/tables/playwright/e2e/view-mandatory-state.spec.ts:142:137
|
|
[chromium] βΊ playwright/e2e/tables-table.spec.ts:76:2 βΊ Manage a table βΊ Transfer:
playwright/e2e/tables-table.spec.ts#L89
1) [chromium] βΊ playwright/e2e/tables-table.spec.ts:76:2 βΊ Manage a table βΊ Transfer βββββββββββββ
Error: locator.click: Target page, context or browser has been closed
Call log:
- waiting for locator('[data-cy="customTableAction"] button')
87 |
88 | await loadTable(page, 'test table')
> 89 | await page.locator('[data-cy="customTableAction"] button').click()
| ^
90 | await page.locator('[data-cy="dataTableEditTableBtn"]').click()
91 |
92 | await expect(page.locator('[data-cy="editTableModal"]')).toBeVisible()
at /home/runner/work/tables/tables/playwright/e2e/tables-table.spec.ts:89:62
|
|
[chromium] βΊ playwright/e2e/tables-table.spec.ts:76:2 βΊ Manage a table βΊ Transfer:
playwright/e2e/tables-table.spec.ts#L0
1) [chromium] βΊ playwright/e2e/tables-table.spec.ts:76:2 βΊ Manage a table βΊ Transfer βββββββββββββ
Test timeout of 60000ms exceeded.
|
|
Playwright (master)
Process completed with exit code 1.
|
|
[chromium] βΊ playwright/e2e/view.spec.ts:69:2 βΊ Interact with views βΊ Create view and insert rows in the view:
playwright/support/login.ts#L37
4) [chromium] βΊ playwright/e2e/view.spec.ts:69:2 βΊ Interact with views βΊ Create view and insert rows in the view
Error: Login form was not visible
at support/login.ts:37
35 | }
36 |
> 37 | throw new Error('Login form was not visible')
| ^
38 | } catch (error) {
39 | lastError = error as Error
40 | await page.waitForTimeout(attempt * 1000)
at openLoginPage (/home/runner/work/tables/tables/playwright/support/login.ts:37:10)
at login (/home/runner/work/tables/tables/playwright/support/login.ts:112:4)
at /home/runner/work/tables/tables/playwright/e2e/view.spec.ts:50:3
|
|
[chromium] βΊ playwright/e2e/tables-sharing-link.spec.ts:28:2 βΊ Public link sharing βΊ Create:
playwright/e2e/tables-sharing-link.spec.ts#L33
3) [chromium] βΊ playwright/e2e/tables-sharing-link.spec.ts:28:2 βΊ Public link sharing βΊ Create, access and delete a public link share
Error: locator.waitFor: Target page, context or browser has been closed
Call log:
- waiting for locator('[data-cy="customTableAction"] button').first() to be visible
31 |
32 | const menuButton1 = page.locator('[data-cy="customTableAction"] button').first()
> 33 | await menuButton1.waitFor({ state: 'visible' })
| ^
34 | await menuButton1.hover()
35 | await menuButton1.click({ force: true })
36 | await page.locator('[data-cy="dataTableShareBtn"]').click()
at /home/runner/work/tables/tables/playwright/e2e/tables-sharing-link.spec.ts:33:21
|
|
[chromium] βΊ playwright/e2e/tables-sharing-link.spec.ts:28:2 βΊ Public link sharing βΊ Create:
playwright/e2e/tables-sharing-link.spec.ts#L0
3) [chromium] βΊ playwright/e2e/tables-sharing-link.spec.ts:28:2 βΊ Public link sharing βΊ Create, access and delete a public link share
Test timeout of 60000ms exceeded.
|
|
[chromium] βΊ playwright/e2e/context.spec.ts:158:2 βΊ Manage a context βΊ Delete context with shares:
playwright/e2e/context.spec.ts#L188
2) [chromium] βΊ playwright/e2e/context.spec.ts:158:2 βΊ Manage a context βΊ Delete context with shares
Retry #1 βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Error: expect(locator).toBeHidden() failed
Locator: locator('[data-cy="navigationContextItem"]').filter({ hasText: 'test application delete' })
Expected: hidden
Received: visible
Timeout: 15000ms
Call log:
- Expect "toBeHidden" with timeout 15000ms
- waiting for locator('[data-cy="navigationContextItem"]').filter({ hasText: 'test application delete' })
19 Γ locator resolved to <li data-v-f380110d="" data-v-59e96255="" data-v-058e6060="" id="app-navigation-item-wfbjm" data-cy="navigationContextItem" class="app-navigation-entry-wrapper active">β¦</li>
- unexpected value "visible"
186 |
187 | // Wait for the navigation item to be hidden
> 188 | await expect(page.locator('[data-cy="navigationContextItem"]').filter({ hasText: contextTitle })).toBeHidden({ timeout: 15000 })
| ^
189 | await expect(page.locator('h1').filter({ hasText: contextTitle })).toBeHidden()
190 |
191 | // verify that context was deleted from shared user
at /home/runner/work/tables/tables/playwright/e2e/context.spec.ts:188:101
|
|
[chromium] βΊ playwright/e2e/context.spec.ts:158:2 βΊ Manage a context βΊ Delete context with shares:
playwright/e2e/context.spec.ts#L188
2) [chromium] βΊ playwright/e2e/context.spec.ts:158:2 βΊ Manage a context βΊ Delete context with shares
Error: expect(locator).toBeHidden() failed
Locator: locator('[data-cy="navigationContextItem"]').filter({ hasText: 'test application delete' })
Expected: hidden
Received: visible
Timeout: 15000ms
Call log:
- Expect "toBeHidden" with timeout 15000ms
- waiting for locator('[data-cy="navigationContextItem"]').filter({ hasText: 'test application delete' })
19 Γ locator resolved to <li data-v-f380110d="" data-v-59e96255="" data-v-058e6060="" id="app-navigation-item-mucpk" data-cy="navigationContextItem" class="app-navigation-entry-wrapper active">β¦</li>
- unexpected value "visible"
186 |
187 | // Wait for the navigation item to be hidden
> 188 | await expect(page.locator('[data-cy="navigationContextItem"]').filter({ hasText: contextTitle })).toBeHidden({ timeout: 15000 })
| ^
189 | await expect(page.locator('h1').filter({ hasText: contextTitle })).toBeHidden()
190 |
191 | // verify that context was deleted from shared user
at /home/runner/work/tables/tables/playwright/e2e/context.spec.ts:188:101
|
|
[chromium] βΊ playwright/e2e/view-mandatory-state.spec.ts:113:2 βΊ Mandatory Column Functionality βΊ EditRow - Mandatory Field Validation:
playwright/e2e/view-mandatory-state.spec.ts#L142
1) [chromium] βΊ playwright/e2e/view-mandatory-state.spec.ts:113:2 βΊ Mandatory Column Functionality βΊ EditRow - Mandatory Field Validation
Retry #2 βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Error: expect(locator).toBeVisible() failed
Locator: locator('[data-cy="editRowModal"]').locator('.notecard--error, .note-card--error, .error, [type="error"]').first()
Expected: visible
Timeout: 15000ms
Error: element(s) not found
Call log:
- Expect "toBeVisible" with timeout 15000ms
- waiting for locator('[data-cy="editRowModal"]').locator('.notecard--error, .note-card--error, .error, [type="error"]').first()
140 | await input.blur()
141 |
> 142 | await expect(page.locator('[data-cy="editRowModal"]').locator('.notecard--error, .note-card--error, .error, [type="error"]').first()).toBeVisible({ timeout: 15000 })
| ^
143 |
144 | // Check that save button is disabled
145 | const saveBtn = page.locator('[data-cy="editRowSaveButton"]')
at /home/runner/work/tables/tables/playwright/e2e/view-mandatory-state.spec.ts:142:137
|
|
[chromium] βΊ playwright/e2e/view-mandatory-state.spec.ts:113:2 βΊ Mandatory Column Functionality βΊ EditRow - Mandatory Field Validation:
playwright/e2e/view-mandatory-state.spec.ts#L142
1) [chromium] βΊ playwright/e2e/view-mandatory-state.spec.ts:113:2 βΊ Mandatory Column Functionality βΊ EditRow - Mandatory Field Validation
Retry #1 βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Error: expect(locator).toBeVisible() failed
Locator: locator('[data-cy="editRowModal"]').locator('.notecard--error, .note-card--error, .error, [type="error"]').first()
Expected: visible
Timeout: 15000ms
Error: element(s) not found
Call log:
- Expect "toBeVisible" with timeout 15000ms
- waiting for locator('[data-cy="editRowModal"]').locator('.notecard--error, .note-card--error, .error, [type="error"]').first()
140 | await input.blur()
141 |
> 142 | await expect(page.locator('[data-cy="editRowModal"]').locator('.notecard--error, .note-card--error, .error, [type="error"]').first()).toBeVisible({ timeout: 15000 })
| ^
143 |
144 | // Check that save button is disabled
145 | const saveBtn = page.locator('[data-cy="editRowSaveButton"]')
at /home/runner/work/tables/tables/playwright/e2e/view-mandatory-state.spec.ts:142:137
|
|
[chromium] βΊ playwright/e2e/view-mandatory-state.spec.ts:113:2 βΊ Mandatory Column Functionality βΊ EditRow - Mandatory Field Validation:
playwright/e2e/view-mandatory-state.spec.ts#L142
1) [chromium] βΊ playwright/e2e/view-mandatory-state.spec.ts:113:2 βΊ Mandatory Column Functionality βΊ EditRow - Mandatory Field Validation
Error: expect(locator).toBeVisible() failed
Locator: locator('[data-cy="editRowModal"]').locator('.notecard--error, .note-card--error, .error, [type="error"]').first()
Expected: visible
Timeout: 15000ms
Error: element(s) not found
Call log:
- Expect "toBeVisible" with timeout 15000ms
- waiting for locator('[data-cy="editRowModal"]').locator('.notecard--error, .note-card--error, .error, [type="error"]').first()
140 | await input.blur()
141 |
> 142 | await expect(page.locator('[data-cy="editRowModal"]').locator('.notecard--error, .note-card--error, .error, [type="error"]').first()).toBeVisible({ timeout: 15000 })
| ^
143 |
144 | // Check that save button is disabled
145 | const saveBtn = page.locator('[data-cy="editRowSaveButton"]')
at /home/runner/work/tables/tables/playwright/e2e/view-mandatory-state.spec.ts:142:137
|
|
playwright-summary
Process completed with exit code 1.
|
|
π Playwright Run Summary
2 flaky
[chromium] βΊ playwright/e2e/tables-table.spec.ts:76:2 βΊ Manage a table βΊ Transfer ββββββββββββββ
[chromium] βΊ playwright/e2e/view-mandatory-state.spec.ts:113:2 βΊ Mandatory Column Functionality βΊ EditRow - Mandatory Field Validation
71 passed (6.4m)
|
|
π Playwright Run Summary
1 failed
[chromium] βΊ playwright/e2e/view-mandatory-state.spec.ts:113:2 βΊ Mandatory Column Functionality βΊ EditRow - Mandatory Field Validation
3 flaky
[chromium] βΊ playwright/e2e/context.spec.ts:158:2 βΊ Manage a context βΊ Delete context with shares
[chromium] βΊ playwright/e2e/tables-sharing-link.spec.ts:28:2 βΊ Public link sharing βΊ Create, access and delete a public link share
[chromium] βΊ playwright/e2e/view.spec.ts:69:2 βΊ Interact with views βΊ Create view and insert rows in the view
69 passed (8.0m)
|
Artifacts
Produced during runtime
| Name | Size | Digest | |
|---|---|---|---|
|
playwright-results-master
Expired
|
59.4 MB |
sha256:0f9c601f5e2fe6c4a2897bdf2adf2ec1983ba2bc9f2a2403b60b5842d7dedf7a
|
|
|
playwright-results-stable33
Expired
|
28.5 MB |
sha256:267f925a80856abcca12d959e57d9012286ebb87c9fa9eb36e129360226e0e54
|
|