[ACS-6106] Breadcrumb navigation fail on Details tab #1525
Annotations
10 errors and 1 notice
e2e/playwright/actions/src/tests/create-folder-from-template.spec.ts#L247
1) [Actions] › src/tests/create-folder-from-template.spec.ts:241:11 › Create folder from template › Personal Files page › Create from template dialog › [C325144] Special characters in folder name
Error: Timed out 5000ms waiting for expect(received).toHaveValue(expected)
Expected string: "a*a"
Received string: ""
Call log:
- expect.toHaveValue with timeout 5000ms
- waiting for locator('app-create-from-template-dialog label').filter({ hasText: 'Name *' })
245 | await createFolderFromTemplateDialog.getDialogLabel(nameLabel).fill(specialFolderName);
246 | await createFolderFromTemplateDialog.page.keyboard.press(tabKeyString);
> 247 | await expect(createFolderFromTemplateDialog.getDialogLabel(nameLabel)).toHaveValue(specialFolderName);
| ^
248 | expect
249 | .soft(
250 | await createFolderFromTemplateDialog.isErrorMessageDisplayed(errorStrings.nameWithSpecialCharactersError),
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/actions/src/tests/create-folder-from-template.spec.ts:247:82
|
e2e/playwright/actions/src/tests/create-folder-from-template.spec.ts#L1
1) [Actions] › src/tests/create-folder-from-template.spec.ts:241:11 › Create folder from template › Personal Files page › Create from template dialog › [C325144] Special characters in folder name
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Test timeout of 45000ms exceeded.
|
e2e/playwright/actions/src/tests/create-folder-from-template.spec.ts#L245
1) [Actions] › src/tests/create-folder-from-template.spec.ts:241:11 › Create folder from template › Personal Files page › Create from template dialog › [C325144] Special characters in folder name
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: locator.fill: Page closed
=========================== logs ===========================
waiting for locator('app-create-from-template-dialog label').filter({ hasText: 'Name *' })
============================================================
243 |
244 | for (const specialFolderName of nameWithSpecialChars) {
> 245 | await createFolderFromTemplateDialog.getDialogLabel(nameLabel).fill(specialFolderName);
| ^
246 | await createFolderFromTemplateDialog.page.keyboard.press(tabKeyString);
247 | await expect(createFolderFromTemplateDialog.getDialogLabel(nameLabel)).toHaveValue(specialFolderName);
248 | expect
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/actions/src/tests/create-folder-from-template.spec.ts:245:74
|
e2e/playwright/actions/src/tests/create-folder-from-template.spec.ts#L1
1) [Actions] › src/tests/create-folder-from-template.spec.ts:241:11 › Create folder from template › Personal Files page › Create from template dialog › [C325144] Special characters in folder name
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Pending operations:
- locator.fill at e2e/playwright/actions/src/tests/create-folder-from-template.spec.ts:245:74
|
e2e/playwright/actions/src/tests/create-folder-from-template.spec.ts#L1
2) [Actions] › src/tests/create-folder-from-template.spec.ts:305:11 › Create folder from template › Personal Files page › Create from template dialog › [C325156] Create a folder with a duplicate name
Test timeout of 45000ms exceeded.
|
projects/aca-playwright-shared/src/page-objects/components/dialogs/create-from-template-dialog-component.ts#L52
2) [Actions] › src/tests/create-folder-from-template.spec.ts:305:11 › Create folder from template › Personal Files page › Create from template dialog › [C325156] Create a folder with a duplicate name
Error: locator.fill: Page closed
=========================== logs ===========================
waiting for locator('app-create-from-template-dialog label').filter({ hasText: 'Name *' })
============================================================
at ../../../projects/aca-playwright-shared/src/page-objects/components/dialogs/create-from-template-dialog-component.ts:52
50 | */
51 | async createNewFolderFromTemplate( nameInput: string, titleInput?: string, descriptionInput?: string): Promise<void> {
> 52 | await this.getDialogLabel('Name *').fill(nameInput);
| ^
53 | if (titleInput) { await this.getDialogLabel('Title').fill(titleInput); }
54 | if (descriptionInput) { await this.getDialogLabel('Description').fill(descriptionInput); }
55 | await this.createButton.click();
at CreateFromTemplateDialogComponent.createNewFolderFromTemplate (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/dialogs/create-from-template-dialog-component.ts:52:43)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/actions/src/tests/create-folder-from-template.spec.ts:308:46
|
e2e/playwright/actions/src/tests/create-folder-from-template.spec.ts#L1
2) [Actions] › src/tests/create-folder-from-template.spec.ts:305:11 › Create folder from template › Personal Files page › Create from template dialog › [C325156] Create a folder with a duplicate name
Pending operations:
- locator.fill at projects/aca-playwright-shared/src/page-objects/components/dialogs/create-from-template-dialog-component.ts:52:43
|
e2e/playwright/actions/src/tests/create-folder-from-template.spec.ts#L1
3) [Actions] › src/tests/create-folder-from-template.spec.ts:336:11 › Create folder from template › Personal Files page › Folder created from template on Personal Files › [C325157] Create a folder from a template - with a new Name
Test timeout of 45000ms exceeded.
|
projects/aca-playwright-shared/src/page-objects/components/dialogs/create-from-template-dialog-component.ts#L52
3) [Actions] › src/tests/create-folder-from-template.spec.ts:336:11 › Create folder from template › Personal Files page › Folder created from template on Personal Files › [C325157] Create a folder from a template - with a new Name
Error: locator.fill: Page closed
=========================== logs ===========================
waiting for locator('app-create-from-template-dialog label').filter({ hasText: 'Name *' })
locator resolved to <label for="mat-input-1" aria-owns="mat-input-1" ng-ref…>…</label>
elementHandle.fill("playwright-folder-1sh2a")
waiting for element to be visible, enabled and editable
element was detached from the DOM, retrying
============================================================
at ../../../projects/aca-playwright-shared/src/page-objects/components/dialogs/create-from-template-dialog-component.ts:52
50 | */
51 | async createNewFolderFromTemplate( nameInput: string, titleInput?: string, descriptionInput?: string): Promise<void> {
> 52 | await this.getDialogLabel('Name *').fill(nameInput);
| ^
53 | if (titleInput) { await this.getDialogLabel('Title').fill(titleInput); }
54 | if (descriptionInput) { await this.getDialogLabel('Description').fill(descriptionInput); }
55 | await this.createButton.click();
at CreateFromTemplateDialogComponent.createNewFolderFromTemplate (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/dialogs/create-from-template-dialog-component.ts:52:43)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/actions/src/tests/create-folder-from-template.spec.ts:337:46
|
e2e/playwright/actions/src/tests/create-folder-from-template.spec.ts#L1
3) [Actions] › src/tests/create-folder-from-template.spec.ts:336:11 › Create folder from template › Personal Files page › Folder created from template on Personal Files › [C325157] Create a folder from a template - with a new Name
Pending operations:
- locator.fill at projects/aca-playwright-shared/src/page-objects/components/dialogs/create-from-template-dialog-component.ts:52:43
|
4 flaky
[Actions] › src/tests/create-folder-from-template.spec.ts:241:11 › Create folder from template › Personal Files page › Create from template dialog › [C325144] Special characters in folder name
[Actions] › src/tests/create-folder-from-template.spec.ts:305:11 › Create folder from template › Personal Files page › Create from template dialog › [C325156] Create a folder with a duplicate name
[Actions] › src/tests/create-folder-from-template.spec.ts:336:11 › Create folder from template › Personal Files page › Folder created from template on Personal Files › [C325157] Create a folder from a template - with a new Name
[Actions] › src/tests/create-folder-from-template.spec.ts:408:9 › Create folder from template › Folder created from template on Personal Files Libraries › [C325163] Create a folder with a duplicate name in a library
38 passed (8.8m)
|
The logs for this run have expired and are no longer available.
Loading