File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
tests/suites/tenant/summary Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ export class ObjectSummary {
19
19
private primaryKeys : Locator ;
20
20
private actionsMenu : ActionsMenu ;
21
21
private aclWrapper : Locator ;
22
+ private aclListWrapper : Locator ;
22
23
private aclList : Locator ;
23
24
private effectiveAclList : Locator ;
24
25
private createDirectoryModal : Locator ;
@@ -39,7 +40,8 @@ export class ObjectSummary {
39
40
this . primaryKeys = page . locator ( '.schema-viewer__keys_type_primary' ) ;
40
41
this . actionsMenu = new ActionsMenu ( page . locator ( '.g-popup.g-popup_open' ) ) ;
41
42
this . aclWrapper = page . locator ( '.ydb-acl' ) ;
42
- this . aclList = this . aclWrapper . locator ( 'dl.gc-definition-list' ) . first ( ) ;
43
+ this . aclListWrapper = this . aclWrapper . locator ( '.gc-definition-list' ) . first ( ) ;
44
+ this . aclList = this . aclListWrapper . locator ( 'dl.gc-definition-list__list' ) . first ( ) ;
43
45
this . effectiveAclList = this . aclWrapper . locator ( 'dl.gc-definition-list' ) . last ( ) ;
44
46
this . createDirectoryModal = page . locator ( '.g-modal.g-modal_open' ) ;
45
47
this . createDirectoryInput = page . locator (
You can’t perform that action at this time.
0 commit comments