GH Auto: Upstream dependencies ADF:7.0.0-alpha.7-12200140537 JS-API:8.0.0-alpha.7-12200140537 using Tag:7.0.0-alpha.7-12200140537 #4041
pull-request.yml
on: pull_request
Annotations
27 errors, 9 warnings, and 17 notices
[Create Actions] › src/tests/create-library.e2e.ts:118:9 › Create Libraries › On My Libraries dataTable › [C280025] Create a public library:
e2e/playwright/create-actions/src/tests/create-library.e2e.ts#L123
1) [Create Actions] › src/tests/create-library.e2e.ts:118:9 › Create Libraries › On My Libraries dataTable › [C280025] Create a public library
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('adf-breadcrumb .adf-breadcrumb-item[title=playwright-library3-1eg1j]')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('adf-breadcrumb .adf-breadcrumb-item[title=playwright-library3-1eg1j]')
121 | await expect(libraryDialog.getLabelText(libraryIdLabel)).toHaveValue(randomLibraryName);
122 | await libraryDialog.createButton.click();
> 123 | await expect(libraryBreadcrumb.getItemByTitle(randomLibraryName)).toBeVisible();
| ^
124 |
125 | await myLibrariesPage.navigate();
126 | await expect(libraryTable.getCellByColumnNameAndRowItem(randomLibraryName, publicVisibility)).toBeVisible();
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/create-actions/src/tests/create-library.e2e.ts:123:73
|
[Create Actions] › src/tests/create-library.e2e.ts:118:9 › Create Libraries › On My Libraries dataTable › [C280025] Create a public library:
e2e/playwright/create-actions/src/tests/create-library.e2e.ts#L123
1) [Create Actions] › src/tests/create-library.e2e.ts:118:9 › Create Libraries › On My Libraries dataTable › [C280025] Create a public library
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('adf-breadcrumb .adf-breadcrumb-item[title=playwright-library3-1oojb]')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('adf-breadcrumb .adf-breadcrumb-item[title=playwright-library3-1oojb]')
121 | await expect(libraryDialog.getLabelText(libraryIdLabel)).toHaveValue(randomLibraryName);
122 | await libraryDialog.createButton.click();
> 123 | await expect(libraryBreadcrumb.getItemByTitle(randomLibraryName)).toBeVisible();
| ^
124 |
125 | await myLibrariesPage.navigate();
126 | await expect(libraryTable.getCellByColumnNameAndRowItem(randomLibraryName, publicVisibility)).toBeVisible();
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/create-actions/src/tests/create-library.e2e.ts:123:73
|
[Folder Rules] › src/tests/create-rules.e2e.ts:132:7 › Folder Rules Actions › [XAT-888] Create a rule with multiple actions:
projects/aca-playwright-shared/src/page-objects/components/manageRules/manage-rules.component.ts#L60
1) [Folder Rules] › src/tests/create-rules.e2e.ts:132:7 › Folder Rules Actions › [XAT-888] Create a rule with multiple actions
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('.aca-manage-rules .aca-rule-list-item__header').filter({ hasText: 'rule-XAT-ave20' })
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('.aca-manage-rules .aca-rule-list-item__header').filter({ hasText: 'rule-XAT-ave20' })
at ../../../projects/aca-playwright-shared/src/page-objects/components/manageRules/manage-rules.component.ts:60
58 |
59 | async checkIfRuleIsOnTheList(ruleName: string): Promise<void> {
> 60 | await expect(this.getGroupsList(ruleName)).toBeVisible({ timeout: 5000 });
| ^
61 | }
62 |
63 | async countConditionsInGroup(): Promise<number> {
at ManageRules.checkIfRuleIsOnTheList (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/manageRules/manage-rules.component.ts:60:48)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/folder-rules/src/tests/create-rules.e2e.ts:155:33
|
[Folder Rules] › src/tests/create-rules.e2e.ts:226:7 › Folder Rules Actions › [XAT-893] Removing values from required fields should restore disabled state for Create button:
e2e/playwright/folder-rules/src/tests/create-rules.e2e.ts#L1
2) [Folder Rules] › src/tests/create-rules.e2e.ts:226:7 › Folder Rules Actions › [XAT-893] Removing values from required fields should restore disabled state for Create button
Test timeout of 85000ms exceeded.
|
[Folder Rules] › src/tests/create-rules.e2e.ts:226:7 › Folder Rules Actions › [XAT-893] Removing values from required fields should restore disabled state for Create button:
projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts#L86
2) [Folder Rules] › src/tests/create-rules.e2e.ts:226:7 › Folder Rules Actions › [XAT-893] Removing values from required fields should restore disabled state for Create button
Error: locator.click: Test timeout of 85000ms exceeded.
Call log:
- waiting for locator('.mat-mdc-select-panel .mdc-list-item__primary-text').filter({ hasText: 'Controls' }).first().first()
at ../../../projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts:86
84 | async dropdownSelection(selectValue: string, locator: string, index: number): Promise<void> {
85 | await this.ruleActionLocator.nth(index).locator(locator).click();
> 86 | await this.getOptionLocator(selectValue).nth(0).click();
| ^
87 | }
88 |
89 | async insertCheckInActionValues(checkInValue: string, index: number): Promise<void> {
at ActionsDropdownComponent.dropdownSelection (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts:86:53)
at ActionsDropdownComponent.insertAddAspectActionValues (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts:94:5)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/folder-rules/src/tests/create-rules.e2e.ts:231:5
|
[Folder Rules] › src/tests/create-rules.e2e.ts:237:7 › Folder Rules Actions › [XAT-894] Create rule with filled required fields and empty optional fields:
e2e/playwright/folder-rules/src/tests/create-rules.e2e.ts#L1
3) [Folder Rules] › src/tests/create-rules.e2e.ts:237:7 › Folder Rules Actions › [XAT-894] Create rule with filled required fields and empty optional fields
Test timeout of 85000ms exceeded.
|
[Folder Rules] › src/tests/create-rules.e2e.ts:237:7 › Folder Rules Actions › [XAT-894] Create rule with filled required fields and empty optional fields:
projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts#L86
3) [Folder Rules] › src/tests/create-rules.e2e.ts:237:7 › Folder Rules Actions › [XAT-894] Create rule with filled required fields and empty optional fields
Error: locator.click: Test timeout of 85000ms exceeded.
Call log:
- waiting for locator('.mat-mdc-select-panel .mdc-list-item__primary-text').filter({ hasText: 'Controls' }).first().first()
at ../../../projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts:86
84 | async dropdownSelection(selectValue: string, locator: string, index: number): Promise<void> {
85 | await this.ruleActionLocator.nth(index).locator(locator).click();
> 86 | await this.getOptionLocator(selectValue).nth(0).click();
| ^
87 | }
88 |
89 | async insertCheckInActionValues(checkInValue: string, index: number): Promise<void> {
at ActionsDropdownComponent.dropdownSelection (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts:86:53)
at ActionsDropdownComponent.insertAddAspectActionValues (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts:94:5)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/folder-rules/src/tests/create-rules.e2e.ts:242:5
|
[Folder Rules] › src/tests/update-rules.e2e.ts:148:7 › Rules - Manage Rules › [XAT-903] [XAT-904] Edit existing conditions:
e2e/playwright/folder-rules/src/tests/update-rules.e2e.ts#L1
4) [Folder Rules] › src/tests/update-rules.e2e.ts:148:7 › Rules - Manage Rules › [XAT-903] [XAT-904] Edit existing conditions
Test timeout of 85000ms exceeded.
|
[Folder Rules] › src/tests/update-rules.e2e.ts:148:7 › Rules - Manage Rules › [XAT-903] [XAT-904] Edit existing conditions:
projects/aca-playwright-shared/src/page-objects/components/conditions.component.ts#L66
4) [Folder Rules] › src/tests/update-rules.e2e.ts:148:7 › Rules - Manage Rules › [XAT-903] [XAT-904] Edit existing conditions
Error: locator.fill: Test timeout of 85000ms exceeded.
Call log:
- waiting for locator('aca-edit-rule-dialog [data-automation-id="value-input"]').nth(1)
at ../../../projects/aca-playwright-shared/src/page-objects/components/conditions.component.ts:66
64 | await this.selectComparator(comparators, index);
65 | }
> 66 | await this.valueField.nth(index).fill(value);
| ^
67 | }
68 |
69 | async addConditionGroup(fields: Partial<Field>, value: string, index: number, comparators?: Partial<Comparator>): Promise<void> {
at ConditionComponent.addCondition (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/conditions.component.ts:66:38)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/folder-rules/src/tests/update-rules.e2e.ts:153:5
|
[Folder Rules] › src/tests/update-rules.e2e.ts:148:7 › Rules - Manage Rules › [XAT-903] [XAT-904] Edit existing conditions:
e2e/playwright/folder-rules/src/tests/update-rules.e2e.ts#L1
4) [Folder Rules] › src/tests/update-rules.e2e.ts:148:7 › Rules - Manage Rules › [XAT-903] [XAT-904] Edit existing conditions
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Test timeout of 85000ms exceeded.
|
[Folder Rules] › src/tests/update-rules.e2e.ts:148:7 › Rules - Manage Rules › [XAT-903] [XAT-904] Edit existing conditions:
projects/aca-playwright-shared/src/page-objects/components/conditions.component.ts#L66
4) [Folder Rules] › src/tests/update-rules.e2e.ts:148:7 › Rules - Manage Rules › [XAT-903] [XAT-904] Edit existing conditions
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: locator.fill: Test timeout of 85000ms exceeded.
Call log:
- waiting for locator('aca-edit-rule-dialog [data-automation-id="value-input"]').nth(1)
at ../../../projects/aca-playwright-shared/src/page-objects/components/conditions.component.ts:66
64 | await this.selectComparator(comparators, index);
65 | }
> 66 | await this.valueField.nth(index).fill(value);
| ^
67 | }
68 |
69 | async addConditionGroup(fields: Partial<Field>, value: string, index: number, comparators?: Partial<Comparator>): Promise<void> {
at ConditionComponent.addCondition (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/conditions.component.ts:66:38)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/folder-rules/src/tests/update-rules.e2e.ts:153:5
|
[special-permissions] › src/tests/other-permissions.ts:91:9 › Special permissions : › Collaborator › available actions : › on Search Results - [C297653]:
projects/aca-playwright-shared/src/page-objects/components/dataTable/mat-menu.component.ts#L72
1) [special-permissions] › src/tests/other-permissions.ts:91:9 › Special permissions : › Collaborator › available actions : › on Search Results - [C297653]
Error: Expected to contain Remove Favorite Edit Offline,Upload New Version,Favorite,Copy,Manage Versions,Edit Aspects,Permissions
expect(received).toBe(expected) // Object.is equality
Expected: true
Received: false
at ../../../projects/aca-playwright-shared/src/page-objects/components/dataTable/mat-menu.component.ts:72
70 | );
71 | for (const action of expectedToolbarMore) {
> 72 | expect(actualMoreActions.includes(action), `Expected to contain ${action} ${actualMoreActions}`).toBe(true);
| ^
73 | }
74 | }
75 | }
at MatMenuComponent.verifyActualMoreActions (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/dataTable/mat-menu.component.ts:72:104)
at checkActionsAvailable (/home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/special-permissions-actions-available/src/tests/other-permissions.ts:38:3)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/special-permissions-actions-available/src/tests/other-permissions.ts:93:7
|
[Copy Move Actions] › src/tests/destination-picker-dialog.e2e.ts:96:7 › Copy Move actions › [C263878] Collaborator user can select the folder as destination:
e2e/playwright/copy-move-actions/src/tests/destination-picker-dialog.e2e.ts#L1
1) [Copy Move Actions] › src/tests/destination-picker-dialog.e2e.ts:96:7 › Copy Move actions › [C263878] Collaborator user can select the folder as destination
Test timeout of 150000ms exceeded.
|
[Copy Move Actions] › src/tests/destination-picker-dialog.e2e.ts:96:7 › Copy Move actions › [C263878] Collaborator user can select the folder as destination:
projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts#L204
1) [Copy Move Actions] › src/tests/destination-picker-dialog.e2e.ts:96:7 › Copy Move actions › [C263878] Collaborator user can select the folder as destination
Error: locator.click: Test timeout of 150000ms exceeded.
Call log:
- waiting for locator('adf-datatable .adf-cell-value span[role="link"]').filter({ hasText: 'site-18axi' })
at ../../../projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts:204
202 | */
203 | async performClickFolderOrFileToOpen(name: string): Promise<void> {
> 204 | await this.getCellLinkByName(name).click();
| ^
205 | await this.spinnerWaitForReload();
206 | }
207 |
at DataTableComponent.performClickFolderOrFileToOpen (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts:204:40)
at copyContentInMyLibraries (/home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/copy-move-actions/src/tests/destination-picker-dialog.e2e.ts:76:37)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/copy-move-actions/src/tests/destination-picker-dialog.e2e.ts:99:11
|
[Copy Move Actions] › src/tests/move.e2e.ts:198:9 › Move actions › [C217321] Move folder that contains locked file:
e2e/playwright/copy-move-actions/src/tests/move.e2e.ts#L181
2) [Copy Move Actions] › src/tests/move.e2e.ts:198:9 › Move actions › [C217321] Move folder that contains locked file
Error: expect(received).toBeTruthy()
Received: false
179 | expect.soft(await personalFiles.dataTable.isItemPresent(sourceFolder)).toBeFalsy();
180 | await personalFiles.dataTable.performClickFolderOrFileToOpen(destinationFolder);
> 181 | expect.soft(await personalFiles.dataTable.isItemPresent(sourceFolder)).toBeTruthy();
| ^
182 | await personalFiles.dataTable.performClickFolderOrFileToOpen(sourceFolder);
183 | expect(await personalFiles.dataTable.isItemPresent(sourceFileInsideFolder)).toBeTruthy();
184 | }
at moveFolderWithContent (/home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/copy-move-actions/src/tests/move.e2e.ts:181:76)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/copy-move-actions/src/tests/move.e2e.ts:199:7
|
[Search] › src/tests/search-filters-location.e2e.ts:70:7 › Search - Filters - Location › [C279231] Filter by location - files:
e2e/playwright/search/src/tests/search-filters-location.e2e.ts#L46
1) [Search] › src/tests/search-filters-location.e2e.ts:70:7 › Search - Filters - Location › [C279231] Filter by location - files
"beforeAll" hook timeout of 85000ms exceeded.
44 | });
45 |
> 46 | test.beforeAll(async () => {
| ^
47 | try {
48 | const apiClientFactory = new ApiClientFactory();
49 | await apiClientFactory.setUpAcaBackend('admin');
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-filters-location.e2e.ts:46:8
|
[Search] › src/tests/search-filters-location.e2e.ts:82:7 › Search - Filters - Location › [C279231] Filter by location - folders:
e2e/playwright/search/src/tests/search-filters-location.e2e.ts#L46
2) [Search] › src/tests/search-filters-location.e2e.ts:82:7 › Search - Filters - Location › [C279231] Filter by location - folders
"beforeAll" hook timeout of 85000ms exceeded.
44 | });
45 |
> 46 | test.beforeAll(async () => {
| ^
47 | try {
48 | const apiClientFactory = new ApiClientFactory();
49 | await apiClientFactory.setUpAcaBackend('admin');
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-filters-location.e2e.ts:46:8
|
[Search] › src/tests/search-filters-logic.e2e.ts:103:7 › Search - Filters - Logic › [C699502] Filter with Exclude:
e2e/playwright/search/src/tests/search-filters-logic.e2e.ts#L112
3) [Search] › src/tests/search-filters-logic.e2e.ts:103:7 › Search - Filters - Logic › [C699502] Filter with Exclude
Error: expect(received).toBe(expected) // Object.is equality
Expected: 1
Received: 0
110 | await searchPage.dataTable.progressBarWaitForReload();
111 |
> 112 | expect(await searchPage.dataTable.getRowsCount()).toBe(1);
| ^
113 | await expect(searchPage.dataTable.getRowByName(logicFile1.name)).toBeHidden();
114 | await expect(searchPage.dataTable.getRowByName(logicFile2.name)).toBeVisible();
115 | });
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-filters-logic.e2e.ts:112:55
|
[Search] › src/tests/search-filters-logic.e2e.ts:146:7 › Search - Filters - Logic › [C699504] Filter with all options:
e2e/playwright/search/src/tests/search-filters-logic.e2e.ts#L157
4) [Search] › src/tests/search-filters-logic.e2e.ts:146:7 › Search - Filters - Logic › [C699504] Filter with all options
Error: expect(received).toBe(expected) // Object.is equality
Expected: 1
Received: 0
155 | await searchPage.dataTable.progressBarWaitForReload();
156 |
> 157 | expect(await searchPage.dataTable.getRowsCount()).toBe(1);
| ^
158 | await expect(searchPage.dataTable.getRowByName(logicFile1.name)).toBeHidden();
159 | await expect(searchPage.dataTable.getRowByName(logicFile2.name)).toBeVisible();
160 | });
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-filters-logic.e2e.ts:157:55
|
[Search] › src/tests/search-highlighting.e2e.ts:75:7 › Search Highlighting › [XAT-17121] Matching phrases should be highlighted in the file content for search results:
e2e/playwright/search/src/tests/search-highlighting.e2e.ts#L77
5) [Search] › src/tests/search-highlighting.e2e.ts:75:7 › Search Highlighting › [XAT-17121] Matching phrases should be highlighted in the file content for search results
Error: expect(received).toBeTruthy()
Received: false
75 | test('[XAT-17121] Matching phrases should be highlighted in the file content for search results', async ({ searchPage }) => {
76 | await searchPage.searchWithin(fileContent, 'files');
> 77 | expect(await searchPage.dataTable.hasHighlightedText('content')).toBeTruthy();
| ^
78 | expect(await searchPage.dataTable.hasHighlightedText('name')).toBeFalsy();
79 | });
80 | });
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-highlighting.e2e.ts:77:70
|
[Search] › src/tests/search-results-libraries.e2e.ts:214:7 › Search Results - General › [C290028] Search libraries with special characters:
e2e/playwright/search/src/tests/search-results-libraries.e2e.ts#L87
6) [Search] › src/tests/search-results-libraries.e2e.ts:214:7 › Search Results - General › [C290028] Search libraries with special characters
"afterAll" hook timeout of 85000ms exceeded.
85 | });
86 |
> 87 | test.afterAll(async () => {
| ^
88 | await Utils.deleteNodesSitesEmptyTrashcan(nodesApi, trashcanApi, 'afterAll failed', sitesAdminApi, [
89 | site1.id,
90 | site2.id,
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-results-libraries.e2e.ts:87:8
|
[Search] › src/tests/search-sorting.e2e.ts:162:9 › Search sorting › [C277734] Sort by Created date:
e2e/playwright/search/src/tests/search-sorting.e2e.ts#L83
7) [Search] › src/tests/search-sorting.e2e.ts:162:9 › Search sorting › [C277734] Sort by Created date
TypeError: Cannot read properties of undefined (reading 'createFolder')
81 | }
82 |
> 83 | parentId = (await nodesApi1.createFolder(parent)).entry.id;
| ^
84 |
85 | await nodesApi1.setGranularPermission(parentId, true, user2, 'Collaborator');
86 |
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-sorting.e2e.ts:83:33
|
[Upload Download Actions] › src/tests/upload-new-version.e2e.ts:125:9 › Upload new version › on Search Results › [C307006] file is not updated when clicking Cancel:
e2e/playwright/upload-download-actions/src/tests/upload-new-version.e2e.ts#L1
1) [Upload Download Actions] › src/tests/upload-new-version.e2e.ts:125:9 › Upload new version › on Search Results › [C307006] file is not updated when clicking Cancel
Test timeout of 85000ms exceeded.
|
[Upload Download Actions] › src/tests/upload-new-version.e2e.ts:125:9 › Upload new version › on Search Results › [C307006] file is not updated when clicking Cancel:
projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts#L255
1) [Upload Download Actions] › src/tests/upload-new-version.e2e.ts:125:9 › Upload new version › on Search Results › [C307006] file is not updated when clicking Cancel
Error: locator.waitFor: Test timeout of 85000ms exceeded.
Call log:
- waiting for locator('adf-datatable adf-datatable-row').filter({ hasText: 'search-5o7x0-file3.docx' }).locator(locator('.mat-mdc-checkbox-checked'))
at ../../../projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts:255
253 | await row.hover();
254 | await row.locator(this.uncheckedCheckbox).click();
> 255 | await row.locator(this.checkedCheckbox).waitFor({ state: 'attached' });
| ^
256 | }
257 | }
258 | }
at DataTableComponent.selectItems (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts:255:49)
at uploadNewVersion (/home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/upload-download-actions/src/tests/upload-new-version.e2e.ts:72:5)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/upload-download-actions/src/tests/upload-new-version.e2e.ts:127:7
|
[Upload Download Actions] › src/tests/upload.e2e.ts:80:7 › Upload files › [T14752052] Upload dialog remains fixed in the browser when user performs other actions in parallel:
e2e/playwright/upload-download-actions/src/tests/upload.e2e.ts#L1
2) [Upload Download Actions] › src/tests/upload.e2e.ts:80:7 › Upload files › [T14752052] Upload dialog remains fixed in the browser when user performs other actions in parallel
Error: {"error":{"errorKey":"Person 'user-1bth6' already exists.","statusCode":409,"briefSummary":"11062851 Person 'user-1bth6' already exists.","stackTrace":"For security reasons the stack trace is no longer displayed, but the property is kept for previous versions","descriptionURL":"https://api-explorer.alfresco.com","logId":"57eface9-890c-4e05-afac-e9890cee0534"}}
at Request.callback (/home/runner/work/alfresco-content-app/alfresco-content-app/node_modules/superagent/src/node/index.js:875:17)
at fn (/home/runner/work/alfresco-content-app/alfresco-content-app/node_modules/superagent/src/node/index.js:1165:18)
at IncomingMessage.<anonymous> (/home/runner/work/alfresco-content-app/alfresco-content-app/node_modules/superagent/src/node/parsers/json.js:19:7)
|
[Delete Actions] › src/tests/delete-undo-delete.e2e.ts:119:9 › Delete and undo delete › on Personal Files › [C217125] delete a file and check notification:
e2e/playwright/delete-actions/src/tests/delete-undo-delete.e2e.ts#L131
1) [Delete Actions] › src/tests/delete-undo-delete.e2e.ts:119:9 › Delete and undo delete › on Personal Files › [C217125] delete a file and check notification
Error: expect(received).toEqual(expected) // deep equality
Expected: " Showing 1--1 of -1 "
Received: " Showing 1-12 of 12 "
129 | expect(await personalFiles.dataTable.isItemPresent(file1)).toBeFalsy();
130 | items--;
> 131 | expect(await personalFiles.pagination.getMaxRange()).toEqual(` Showing 1-${items} of ${items} `);
| ^
132 | await trashPage.navigate();
133 | expect(await personalFiles.dataTable.isItemPresent(file1)).toBeTruthy();
134 | });
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/delete-actions/src/tests/delete-undo-delete.e2e.ts:131:60
|
[Delete Actions] › src/tests/delete-undo-delete.e2e.ts:196:9 › Delete and undo delete › on Personal Files › [C217132] undo delete of file:
e2e/playwright/delete-actions/src/tests/delete-undo-delete.e2e.ts#L206
2) [Delete Actions] › src/tests/delete-undo-delete.e2e.ts:196:9 › Delete and undo delete › on Personal Files › [C217132] undo delete of file
Error: expect(received).toContain(expected) // indexOf
Expected substring: "1-0 of 0"
Received string: "Showing 1-12 of 12"
204 | await personalFiles.dataTable.spinnerWaitForReload();
205 | expect(await personalFiles.dataTable.isItemPresent(file5)).toBeTruthy();
> 206 | expect(await personalFiles.pagination.getRange()).toContain(`1-${items} of ${items}`);
| ^
207 | });
208 |
209 | test('[C280503] undo delete of folder with content', async ({ personalFiles }) => {
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/delete-actions/src/tests/delete-undo-delete.e2e.ts:206:57
|
build
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
lint
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Unit tests
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Slow Test:
[Viewer] › src/tests/viewer-useraction.e2e.ts#L1
[Viewer] › src/tests/viewer-useraction.e2e.ts took 24.0s
|
Slow Test:
[Folder Rules] › src/tests/delete-view-rules.e2e.ts#L1
[Folder Rules] › src/tests/delete-view-rules.e2e.ts took 1.5m
|
Slow Test:
[Search] › src/tests/search-filters-general.e2e.ts#L1
[Search] › src/tests/search-filters-general.e2e.ts took 31.4s
|
Slow Test:
[Info Drawer] › src/tests/general.e2e.ts#L1
[Info Drawer] › src/tests/general.e2e.ts took 18.5s
|
Slow Test:
[Info Drawer] › src/tests/file-preview.e2e.ts#L1
[Info Drawer] › src/tests/file-preview.e2e.ts took 15.7s
|
Finalize
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
🎭 Playwright Run Summary
34 passed (4.2m)
|
🎭 Playwright Run Summary
1 flaky
[Create Actions] › src/tests/create-library.e2e.ts:118:9 › Create Libraries › On My Libraries dataTable › [C280025] Create a public library
19 passed (3.3m)
|
🎭 Playwright Run Summary
4 flaky
[Folder Rules] › src/tests/create-rules.e2e.ts:132:7 › Folder Rules Actions › [XAT-888] Create a rule with multiple actions
[Folder Rules] › src/tests/create-rules.e2e.ts:226:7 › Folder Rules Actions › [XAT-893] Removing values from required fields should restore disabled state for Create button
[Folder Rules] › src/tests/create-rules.e2e.ts:237:7 › Folder Rules Actions › [XAT-894] Create rule with filled required fields and empty optional fields
[Folder Rules] › src/tests/update-rules.e2e.ts:148:7 › Rules - Manage Rules › [XAT-903] [XAT-904] Edit existing conditions
20 passed (8.7m)
|
🎭 Playwright Run Summary
6 passed (26.5s)
|
🎭 Playwright Run Summary
1 flaky
[special-permissions] › src/tests/other-permissions.ts:91:9 › Special permissions : › Collaborator › available actions : › on Search Results - [C297653]
63 passed (6.8m)
|
🎭 Playwright Run Summary
11 passed (3.2m)
|
🎭 Playwright Run Summary
16 passed (1.9m)
|
🎭 Playwright Run Summary
2 flaky
[Copy Move Actions] › src/tests/destination-picker-dialog.e2e.ts:96:7 › Copy Move actions › [C263878] Collaborator user can select the folder as destination
[Copy Move Actions] › src/tests/move.e2e.ts:198:9 › Move actions › [C217321] Move folder that contains locked file
21 passed (8.3m)
|
🎭 Playwright Run Summary
15 passed (3.5m)
|
🎭 Playwright Run Summary
19 passed (6.3m)
|
🎭 Playwright Run Summary
7 flaky
[Search] › src/tests/search-filters-location.e2e.ts:70:7 › Search - Filters - Location › [C279231] Filter by location - files
[Search] › src/tests/search-filters-location.e2e.ts:82:7 › Search - Filters - Location › [C279231] Filter by location - folders
[Search] › src/tests/search-filters-logic.e2e.ts:103:7 › Search - Filters - Logic › [C699502] Filter with Exclude
[Search] › src/tests/search-filters-logic.e2e.ts:146:7 › Search - Filters - Logic › [C699504] Filter with all options
[Search] › src/tests/search-highlighting.e2e.ts:75:7 › Search Highlighting › [XAT-17121] Matching phrases should be highlighted in the file content for search results
[Search] › src/tests/search-results-libraries.e2e.ts:214:7 › Search Results - General › [C290028] Search libraries with special characters
[Search] › src/tests/search-sorting.e2e.ts:162:9 › Search sorting › [C277734] Sort by Created date
42 passed (9.3m)
|
🎭 Playwright Run Summary
25 passed (2.9m)
|
🎭 Playwright Run Summary
9 passed (1.3m)
|
🎭 Playwright Run Summary
2 flaky
[Upload Download Actions] › src/tests/upload-new-version.e2e.ts:125:9 › Upload new version › on Search Results › [C307006] file is not updated when clicking Cancel
[Upload Download Actions] › src/tests/upload.e2e.ts:80:7 › Upload files › [T14752052] Upload dialog remains fixed in the browser when user performs other actions in parallel
27 passed (4.1m)
|
🎭 Playwright Run Summary
11 passed (1.2m)
|
🎭 Playwright Run Summary
2 flaky
[Delete Actions] › src/tests/delete-undo-delete.e2e.ts:119:9 › Delete and undo delete › on Personal Files › [C217125] delete a file and check notification
[Delete Actions] › src/tests/delete-undo-delete.e2e.ts:196:9 › Delete and undo delete › on Personal Files › [C217132] undo delete of file
21 passed (4.3m)
|
🎭 Playwright Run Summary
68 passed (6.1m)
|