File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ describe('Edit Group', () => {
55 // Must login as an Admin to see the page
66 cy . visit ( '/access-control/groups/' . concat ( Cypress . env ( 'DSPACE_ADMINISTRATOR_GROUP' ) ) . concat ( '/edit' ) ) ;
77 cy . loginViaForm ( Cypress . env ( 'DSPACE_TEST_ADMIN_USER' ) , Cypress . env ( 'DSPACE_TEST_ADMIN_PASSWORD' ) ) ;
8+ // Wait for all search components to be loaded
9+ cy . intercept ( 'GET' , '/server/api/eperson/groups/' . concat ( Cypress . env ( 'DSPACE_ADMINISTRATOR_GROUP' ) . concat ( '/subgroups*' ) ) ) . as ( 'subGroups' ) ;
10+ cy . wait ( '@subGroups' ) ;
811 } ) ;
912
1013 it ( 'should pass accessibility tests' , ( ) => {
Original file line number Diff line number Diff line change 3939
4040 < div *ngIf ="shouldShowBottomPager | async ">
4141 < div *ngIf ="showPaginator " class ="pagination justify-content-center clearfix bottom ">
42- < ngb-pagination [boundaryLinks] ="paginationOptions.boundaryLinks "
42+ < ngb-pagination [attr.aria-label] ="('pagination-control.page-number-bar' | translate) + paginationOptions.id "
43+ [boundaryLinks] ="paginationOptions.boundaryLinks "
4344 [collectionSize] ="collectionSize "
4445 [disabled] ="paginationOptions.disabled "
4546 [ellipses] ="paginationOptions.ellipses "
Original file line number Diff line number Diff line change 10481048
10491049 "pagination.next.button.disabled.tooltip" : "No more pages of results" ,
10501050
1051+ "pagination.page-number-bar" : "Control bar for page navigation, relative to element with ID: " ,
1052+
10511053 "browse.startsWith" : ", starting with {{ startsWith }}" ,
10521054
10531055 "browse.startsWith.choose_start" : "(Choose start)" ,
You can’t perform that action at this time.
0 commit comments