/*! * Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved. * * Alfresco Example Content Application * * This file is part of the Alfresco Example Content Application. * If the software was purchased under a paid Alfresco license, the terms of * the paid license agreement will prevail. Otherwise, the software is * provided under the following open source license terms: * * The Alfresco Example Content Application is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * The Alfresco Example Content Application is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * from Hyland Software. If not, see . */ import { test } from '@alfresco/playwright-shared'; import { expect } from '@playwright/test'; export function favoritesTests(username: string) { test.describe('Pagination controls : ', () => { test.beforeEach(async ({ loginPage, favoritePage }) => { await loginPage.navigate(); await loginPage.loginUser({ username: username, password: username }); await favoritePage.navigate(); await favoritePage.waitForPageLoad(); }); test('[C280113] Pagination control default values', async ({ favoritePage }) => { expect(await favoritePage.pagination.getRange()).toContain('1-25 of 51'); expect(await favoritePage.pagination.getMaxItems()).toContain('25'); expect(await favoritePage.pagination.getCurrentPage()).toContain('Page 1'); expect(await favoritePage.pagination.getTotalPages()).toContain('of 3'); expect(await favoritePage.pagination.isPreviousEnabled()).toBe(false); expect(await favoritePage.pagination.isNextEnabled()).toBe(true); }); test('[C280115] current page menu items', async ({ favoritePage }) => { await favoritePage.pagination.openMaxItemsMenu(); expect(await favoritePage.pagination.getItemsCount()).toBe(3); await favoritePage.pagination.clickMenuItem('25'); await favoritePage.dataTable.spinnerWaitForReload(); expect(await favoritePage.pagination.getMaxItems()).toContain('25'); expect(await favoritePage.pagination.getTotalPages()).toContain('of 3'); await favoritePage.pagination.openMaxItemsMenu(); await favoritePage.pagination.clickMenuItem('50'); expect(await favoritePage.pagination.getMaxItems()).toContain('50'); expect(await favoritePage.pagination.getTotalPages()).toContain('of 2'); await favoritePage.pagination.closeMenu(); await favoritePage.pagination.openMaxItemsMenu(); await favoritePage.pagination.clickMenuItem('100'); expect(await favoritePage.pagination.getMaxItems()).toContain('100'); expect(await favoritePage.pagination.getTotalPages()).toContain('of 1'); await favoritePage.pagination.resetToDefaultPageSize(); }); test('[C280116] change the current page from menu', async ({ favoritePage }) => { await favoritePage.pagination.clickOnNextPage(); expect(await favoritePage.pagination.getRange()).toContain('Showing 26-50 of 51'); expect(await favoritePage.pagination.getCurrentPage()).toContain('Page 2'); expect(await favoritePage.pagination.isPreviousEnabled()).toBe(true); expect(await favoritePage.pagination.isNextEnabled()).toBe(true); await favoritePage.pagination.resetToDefaultPageSize(); }); test('[C280119] navigate to next and previous pages', async ({ favoritePage }) => { await favoritePage.pagination.openMaxItemsMenu(); await favoritePage.pagination.clickMenuItem('25'); expect(await favoritePage.pagination.getMaxItems()).toContain('25'); await favoritePage.pagination.clickOnNextPage(); await favoritePage.dataTable.spinnerWaitForReload(); expect(await favoritePage.pagination.getRange()).toContain('Showing 26-50 of 51'); await favoritePage.pagination.clickOnPreviousPage(); await favoritePage.dataTable.spinnerWaitForReload(); expect(await favoritePage.pagination.getRange()).toContain('Showing 1-25 of 51'); }); test('[C280118] Next button is disabled on last page', async ({ favoritePage }) => { await favoritePage.pagination.openMaxItemsMenu(); await favoritePage.pagination.clickNthItem(3); expect(await favoritePage.pagination.getCurrentPage()).toContain('Page 1'); expect(await favoritePage.pagination.isNextEnabled()).toBe(false); }); }); }