-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* [ACS-6235] migrated e2es to playwright * [ACS-6235] migrated e2es to playwright * [ACS-6235] addressed review comments
- Loading branch information
1 parent
fef55a3
commit 509ab55
Showing
7 changed files
with
133 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
/*! | ||
* Copyright © 2005-2023 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 <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
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('[C280114] Items per page values', async ({ favoritePage }) => { | ||
await favoritePage.pagination.openMaxItemsMenu(); | ||
expect(await (await favoritePage.pagination.getNthItem(1)).innerText()).toBe('25'); | ||
expect(await (await favoritePage.pagination.getNthItem(2)).innerText()).toBe('50'); | ||
expect(await (await favoritePage.pagination.getNthItem(3)).innerText()).toBe('100'); | ||
await favoritePage.pagination.closeMenu(); | ||
}); | ||
|
||
test('[C280115] current page menu items', async ({ favoritePage }) => { | ||
await favoritePage.pagination.openMaxItemsMenu(); | ||
await favoritePage.pagination.clickMenuItem('25'); | ||
expect(await favoritePage.pagination.getMaxItems()).toContain('25'); | ||
expect(await favoritePage.pagination.getTotalPages()).toContain('of 3'); | ||
expect(await favoritePage.pagination.getItemsCount()).toBe(3); | ||
await favoritePage.pagination.closeMenu(); | ||
|
||
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(); | ||
expect(await favoritePage.pagination.getRange()).toContain('Showing 26-50 of 51'); | ||
|
||
await favoritePage.pagination.clickOnPreviousPage(); | ||
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); | ||
}); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters