File tree 1 file changed +4
-2
lines changed
tests/suites/tenant/summary
1 file changed +4
-2
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,8 +40,9 @@ 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 . 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 ( ) ;
44
46
this . createDirectoryModal = page . locator ( '.g-modal.g-modal_open' ) ;
45
47
this . createDirectoryInput = page . locator (
46
48
'.g-text-input__control[placeholder="Relative path"]' ,
You can’t perform that action at this time.
0 commit comments