From ac225eac1d5f72cd13d2d2dcc286dead0ee68dab Mon Sep 17 00:00:00 2001 From: dominikiwanekhyland <141320833+dominikiwanekhyland@users.noreply.github.com> Date: Mon, 31 Mar 2025 11:32:44 +0200 Subject: [PATCH] Fix e2e (#4490) --- .../src/page-objects/components/adf-info-drawer.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/aca-playwright-shared/src/page-objects/components/adf-info-drawer.component.ts b/projects/aca-playwright-shared/src/page-objects/components/adf-info-drawer.component.ts index 95ff3ca2c..fce0b3cfa 100644 --- a/projects/aca-playwright-shared/src/page-objects/components/adf-info-drawer.component.ts +++ b/projects/aca-playwright-shared/src/page-objects/components/adf-info-drawer.component.ts @@ -71,7 +71,7 @@ export class AdfInfoDrawerComponent extends BaseComponent { public tagsAccordionPenButton = this.tagsAccordion.locator('[data-automation-id="showing-tag-input-button"]'); public categoriesAccordionPenButton = this.categoriesAccordion.locator('[data-automation-id="meta-data-categories-edit"]'); public tagsInput = this.tagsCreator.locator('input'); - public createTagButton = this.tagsCreator.locator('[role="button"]'); + public createTagButton = this.tagsCreator.locator('.adf-create-tag-label'); public tagsChips = this.tagsCreator.locator('mat-chip'); public tagsChipsXButton = this.tagsChips.locator('.adf-dynamic-chip-list-delete-icon'); public tagsAccordionCancelButton = this.getChild('[data-automation-id="reset-tags-metadata"]');