Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Raubzeug committed Jan 14, 2025
1 parent 3fe470c commit a353f51
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions tests/suites/tenant/summary/ObjectSummary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ export class ObjectSummary {
private primaryKeys: Locator;
private actionsMenu: ActionsMenu;
private aclWrapper: Locator;
private aclListWrapper: Locator;
private effectiveAclListWrapper: Locator;
private aclList: Locator;
private effectiveAclList: Locator;
private createDirectoryModal: Locator;
Expand All @@ -39,8 +41,12 @@ export class ObjectSummary {
this.primaryKeys = page.locator('.schema-viewer__keys_type_primary');
this.actionsMenu = new ActionsMenu(page.locator('.g-popup.g-popup_open'));
this.aclWrapper = page.locator('.ydb-acl');
this.aclList = this.aclWrapper.locator('dl.gc-definition-list').first();
this.effectiveAclList = this.aclWrapper.locator('dl.gc-definition-list').last();
this.aclListWrapper = this.aclWrapper.locator('.gc-definition-list').first();
this.aclList = this.aclListWrapper.locator('dl.gc-definition-list__list').first();
this.effectiveAclListWrapper = this.aclWrapper.locator('.gc-definition-list').last();
this.effectiveAclList = this.effectiveAclListWrapper
.locator('dl.gc-definition-list__list')
.first();
this.createDirectoryModal = page.locator('.g-modal.g-modal_open');
this.createDirectoryInput = page.locator(
'.g-text-input__control[placeholder="Relative path"]',
Expand Down

0 comments on commit a353f51

Please sign in to comment.