Skip to content

Commit 970eb30

Browse files
committed
fix: tests
1 parent 3fe470c commit 970eb30

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/suites/tenant/summary/ObjectSummary.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export class ObjectSummary {
1919
private primaryKeys: Locator;
2020
private actionsMenu: ActionsMenu;
2121
private aclWrapper: Locator;
22+
private aclListWrapper: Locator;
2223
private aclList: Locator;
2324
private effectiveAclList: Locator;
2425
private createDirectoryModal: Locator;
@@ -39,8 +40,9 @@ export class ObjectSummary {
3940
this.primaryKeys = page.locator('.schema-viewer__keys_type_primary');
4041
this.actionsMenu = new ActionsMenu(page.locator('.g-popup.g-popup_open'));
4142
this.aclWrapper = page.locator('.ydb-acl');
42-
this.aclList = this.aclWrapper.locator('dl.gc-definition-list').first();
43-
this.effectiveAclList = this.aclWrapper.locator('dl.gc-definition-list').last();
43+
this.aclListWrapper = this.aclWrapper.locator('.gc-definition-list').first();
44+
this.aclList = this.aclListWrapper.locator('dl.gc-definition-list__list').first();
45+
this.effectiveAclList = this.aclListWrapper.locator('dl.gc-definition-list__list').last();
4446
this.createDirectoryModal = page.locator('.g-modal.g-modal_open');
4547
this.createDirectoryInput = page.locator(
4648
'.g-text-input__control[placeholder="Relative path"]',

0 commit comments

Comments
 (0)