File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
tests/suites/tenant/summary Expand file tree Collapse file tree 1 file changed +4
-2
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,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"]' ,
You can’t perform that action at this time.
0 commit comments