Skip to content

Commit a353f51

Browse files
committed
fix: tests
1 parent 3fe470c commit a353f51

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

tests/suites/tenant/summary/ObjectSummary.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ export class ObjectSummary {
1919
private primaryKeys: Locator;
2020
private actionsMenu: ActionsMenu;
2121
private aclWrapper: Locator;
22+
private aclListWrapper: Locator;
23+
private effectiveAclListWrapper: Locator;
2224
private aclList: Locator;
2325
private effectiveAclList: Locator;
2426
private createDirectoryModal: Locator;
@@ -39,8 +41,12 @@ export class ObjectSummary {
3941
this.primaryKeys = page.locator('.schema-viewer__keys_type_primary');
4042
this.actionsMenu = new ActionsMenu(page.locator('.g-popup.g-popup_open'));
4143
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();
44+
this.aclListWrapper = this.aclWrapper.locator('.gc-definition-list').first();
45+
this.aclList = this.aclListWrapper.locator('dl.gc-definition-list__list').first();
46+
this.effectiveAclListWrapper = this.aclWrapper.locator('.gc-definition-list').last();
47+
this.effectiveAclList = this.effectiveAclListWrapper
48+
.locator('dl.gc-definition-list__list')
49+
.first();
4450
this.createDirectoryModal = page.locator('.g-modal.g-modal_open');
4551
this.createDirectoryInput = page.locator(
4652
'.g-text-input__control[placeholder="Relative path"]',

0 commit comments

Comments
 (0)