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 {
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,7 +40,8 @@ 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 . aclListWrapper = this . aclWrapper . locator ( '.gc-definition-list' ) . first ( ) ;
44+ this . aclList = this . aclListWrapper . locator ( 'dl.gc-definition-list__list' ) . first ( ) ;
4345 this . effectiveAclList = this . aclWrapper . locator ( 'dl.gc-definition-list' ) . last ( ) ;
4446 this . createDirectoryModal = page . locator ( '.g-modal.g-modal_open' ) ;
4547 this . createDirectoryInput = page . locator (
You can’t perform that action at this time.
0 commit comments